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

From wikieduonline
Jump to navigation Jump to search
Line 13: Line 13:
 
* <code>[[target_type]]</code>: <code>[[instance]]</code>, <code>[[ip]]</code> https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#target_type
 
* <code>[[target_type]]</code>: <code>[[instance]]</code>, <code>[[ip]]</code> https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#target_type
 
* <code>[[vpc_id]]</code>
 
* <code>[[vpc_id]]</code>
* <code>[[protocol]]</code>: [[GENEVE]], HTTP, HTTPS, TCP, [[TCP_UDP]], TLS, or UDP
+
* <code>[[protocol]]</code>:<ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#protocol</ref> [[GENEVE]], HTTP, HTTPS, TCP, [[TCP_UDP]], TLS, or UDP
 
* <code>[[protocol_version]]</code>: [[HTTP1]], [[GRPC]], [[HTTP2]]
 
* <code>[[protocol_version]]</code>: [[HTTP1]], [[GRPC]], [[HTTP2]]
 
* <code>[[health_check]]</code><ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#health_check</ref>
 
* <code>[[health_check]]</code><ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#health_check</ref>

Revision as of 10:08, 27 January 2023


Attributes Reference

Example Instance Target Group

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"
}

Related terms

See also

  • https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group
  • https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#protocol
  • https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group#health_check
  • Advertising: