FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_ecs_container_definition

The ECS container definition data source allows access to details of a specific container within an AWS ECS service.

Example Usage

data "aws_ecs_container_definition" "ecs-mongo" {
  task_definition = "${aws_ecs_task_definition.mongo.id}"
  container_name = "mongodb"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io