Editing Terraform resource: aws ecs service

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
<code>[[aws_ecs_service]]</code>([https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service ref])
+
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service
__NOTOC__
 
== Arguments ==
 
* <code>[[launch_type]]</code>: <code>EC2, [[FARGATE]], and EXTERNAL</code>. Default: [[EC2]]. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#launch_type
 
* <code>[[load_balancer (argument)]]</code>: <code>[[target_group_arn]], [[container_name]], [[container_port]]</code>
 
* <code>[[task_definition]]</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#task_definition</ref>
 
* <code>[[security_groups]]</code>
 
* <code>[[enable_execute_command]]</code>
 
* <code>[[desired_count]]</code>
 
* <code>[[placement_constraints]]</code>
 
* <code>[[network_configuration]]</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#network_configuration</ref>
 
* <code>[[deployment_minimum_healthy_percent]]</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#deployment_minimum_healthy_percent</ref>
 
  
== Examples ==
 
 
== Official example ==
 
== Official example ==
{{terraform_aws_ecs_service_official_example}}
+
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]
  
== Additional examples ==
+
  ordered_placement_strategy {
  resource "aws_ecs_service" "your_service" {
+
    type = "binpack"
  count          = var.network_name == "prod" ? 1 : 0
+
    field = "cpu"
  name            = "your_service-${var.env}-service"
+
  }
  cluster        = [[aws_ecs_cluster]].your_cluster.name
+
 
  [[task_definition]] = "${[[aws_ecs_task_definition]].your_task[0].family}:${aws_ecs_task_definition.your_task[0].revision}"
+
   [[load_balancer]] {
+
    target_group_arn = aws_lb_target_group.foo.arn
  [[launch_type]]   = "[[FARGATE]]"
+
    container_name  = "mongo"
  [[desired_count]] = var.your_service_desired_count
+
    container_port  = 8080
+
  }
  [[network_configuration]] {
+
 
    security_groups  = [aws_security_group.your_sg[0].id]
+
  [[placement_constraints]] {
    subnets          = [for s in [[data.aws_subnet.all_private]] : s.id]
+
    type      = "memberOf"
    [[assign_public_ip]] = false
+
    expression = "attribute:ecs.availability-zone in [us-west-2a, us-west-2b]"
  }  
+
   }
 
  [[load_balancer]] {
 
    [[target_group_arn]] = [[aws_lb_target_group]].your_tg[0].arn
 
    container_name  = "your-container-${var.env}-c"
 
    [[container_port]]   = 4444
 
  }
 
 
  }
 
  }
 +
 +
== Arguments ==
 +
* <code>[[launch_type]]</code>: EC2, [[FARGATE]], and EXTERNAL. Default: [[EC2]]. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#launch_type
 +
* <code>[[load_balancer]]</code>: <code>[[target_group_arn]]</code>
 +
* <code>[[task_definition]]</code> <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service#task_definition</ref>
 +
* [[security_groups]]
  
 
== Errors ==
 
== Errors ==
* <code>[[Error: error creating MyECSServiceName service]]</code>
+
* [[Error: error creating MyECSServiceName service]]
** <code>[[Error: error creating MyECSServiceName service .../... does not have an associated load balancer]]</code>
 
 
 
== News ==
 
* [[Amazon ECS services now support multiple load balancer target groups]]
 
 
 
== Related ==
 
* [[AWS ECS service]]: <code>[[aws_ecs_cluster]]</code>
 
* [[Ansible module: ecs_service]]
 
* [[DRAINING]]
 
  
 
== See also ==
 
== See also ==
* {{aws_ecs_service}}
 
 
* {{Terraform ECS}}
 
* {{Terraform ECS}}
 +
* {{terraform plan}}
 +
* {{terraform aws resources}}
 +
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]
 
[[Category:AWS]]
 
[[Category:AWS]]

Please note that all contributions to wikieduonline may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Wikieduonline:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)

Advertising: