Difference between revisions of "Load balancer (argument)"
Jump to navigation
Jump to search
↑ https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#load_balancer
(10 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{lc}} | {{lc}} | ||
− | + | <code>[[load_balancer]]</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#load_balancer</ref> optional argument for <code>[[aws_ecs_service]]</code> resource. | |
− | |||
− | |||
.../... | .../... | ||
load_balancer { | load_balancer { | ||
− | target_group_arn = aws_lb_target_group.foo.arn | + | [[target_group_arn]] = aws_lb_target_group.foo.arn |
− | container_name = "mongo" | + | [[container_name]] = "mongo" |
− | container_port = 8080 | + | [[container_port]] = 8080 |
} | } | ||
.../... | .../... | ||
+ | == Official example == | ||
+ | {{terraform_aws_ecs_service_official_example}} | ||
+ | |||
+ | |||
+ | == Related == | ||
+ | * [[Amazon ECS services now support multiple load balancer target groups]] | ||
+ | == See also == | ||
+ | * {{aws_ecs_service}} | ||
+ | * {{tf ecs}} | ||
− | + | [[Category:TF]] |
Latest revision as of 16:57, 14 May 2023
load_balancer
[1] optional argument for aws_ecs_service
resource.
.../... load_balancer { target_group_arn = aws_lb_target_group.foo.arn container_name = "mongo" container_port = 8080 } .../...
Official example[edit]
resource "aws_ecs_service" "mongo" { name = "mongodb" cluster = aws_ecs_cluster.foo.id task_definition = aws_ecs_task_definition.mongo.arn desired_count = 3 iam_role = aws_iam_role.foo.arn depends_on = [aws_iam_role_policy.foo] ordered_placement_strategy { type = "binpack" field = "cpu" } load_balancer { target_group_arn = aws_lb_target_group.foo.arn container_name = "mongo" container_port = 8080 } placement_constraints { type = "memberOf" expression = "attribute:ecs.availability-zone in [us-west-2a, us-west-2b]" } }
Related[edit]
See also[edit]
- Terraform resource:
aws_ecs_service: launch_type (EC2, FARGATE), iam_role, depends_on, load_balancer, desired_count, placement_constraints, deployment_minimum_healthy_percent, iam role
- Terraform ECS: module, resources:
aws_ecs_cluster, aws_ecs_service: task definition, aws_ecs_task_definition: container_definitions
Advertising: