Difference between revisions of "Terraform resource: aws lb target group"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
* Terraform resource: <code>aws_lb_target_group</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group</ref>
 
* Terraform resource: <code>aws_lb_target_group</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group</ref>
 +
 +
===Example Instance Target Group===
 +
<pre>resource "aws_lb_target_group" "test" {
 +
  name    = "tf-example-lb-tg"
 +
  port    = 80
 +
  protocol = "HTTP"
 +
  vpc_id  = aws_vpc.main.id
 +
}
 +
 +
resource "aws_vpc" "main" {
 +
  cidr_block = "10.0.0.0/16"
 +
}
 +
</pre>
  
 
== See also ==
 
== See also ==

Revision as of 12:36, 8 September 2021

Advertising: