Skip to content

Instantly share code, notes, and snippets.

@phatnhse
Created July 20, 2023 17:00
Show Gist options
  • Save phatnhse/ec0cb62dc72406efb6834628feb0ac5b to your computer and use it in GitHub Desktop.
Save phatnhse/ec0cb62dc72406efb6834628feb0ac5b to your computer and use it in GitHub Desktop.
terraform-task-low-spec
resource "aws_ecs_task_definition" "my_simple_task" {
family = "my-task"
container_definitions = <<DEFINITION
[
{
// other configurations
"memory": 512,
"cpu": 256
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment