Difference between revisions of "Template:Terraform aws ecs service official example"
Jump to navigation
Jump to search
(Created page with " resource "aws_ecs_service" "mongo" { name = "mongodb" cluster = aws_ecs_cluster.foo.id task_definition = aws_ecs_task_definition.mongo.arn...") |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | resource "aws_ecs_service" "mongo" { | + | resource "[[aws_ecs_service]]" "mongo" { |
name = "mongodb" | name = "mongodb" | ||
− | [[cluster]] = aws_ecs_cluster.foo.id | + | [[cluster]] = [[aws_ecs_cluster]].foo.id |
− | [[task_definition]] = aws_ecs_task_definition.mongo.arn | + | [[task_definition]] = [[aws_ecs_task_definition]].mongo.arn |
− | desired_count = 3 | + | [[desired_count]] = 3 |
− | iam_role = aws_iam_role.foo.arn | + | [[iam_role]] = aws_iam_role.foo.arn |
[[depends_on]] = [aws_iam_role_policy.foo] | [[depends_on]] = [aws_iam_role_policy.foo] | ||
[[ordered_placement_strategy]] { | [[ordered_placement_strategy]] { | ||
− | type = "binpack" | + | type = "[[binpack]]" |
field = "cpu" | field = "cpu" | ||
} | } | ||
[[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 |
} | } | ||
Latest revision as of 13:17, 14 May 2023
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]" } }
Advertising: