Last active
June 25, 2021 21:09
-
-
Save mikegreen/b6a5a51aca697bb388e0dc367ab714c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~> 3.0" | |
} | |
} | |
} | |
provider "aws" { | |
region = "us-east-2" | |
} | |
variable "name" { | |
type = string | |
default = "second" | |
} | |
variable "cpu" { | |
type = number | |
default = 10 | |
} | |
variable "port" { | |
type = number | |
default = 443 | |
} | |
# define 2nd container via map, could be done with a module as well | |
locals { | |
second-service-definition = { | |
name = var.name | |
image = "service-second" | |
cpu = var.cpu | |
memory = 512 | |
essential = true | |
portMappings = [ | |
{ | |
containerPort = var.port | |
hostPort = var.port | |
} | |
] | |
} | |
} | |
# define 2 container definitions, the second being from the local object above | |
locals { | |
defs = [ | |
{ | |
name = "first" | |
image = "service-first" | |
cpu = 10 | |
memory = 512 | |
essential = true | |
portMappings = [ | |
{ | |
containerPort = 80 | |
hostPort = 80 | |
} | |
] | |
}, | |
# add additional container from the module | |
local.second-service-definition | |
] | |
} | |
# create the task definition with the 2 containers | |
resource "aws_ecs_task_definition" "service-testing" { | |
family = "service-testing" | |
container_definitions = jsonencode(local.defs) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment