16 lines
364 B
HCL
16 lines
364 B
HCL
locals {
|
|
region = "eu-west-1"
|
|
name = "chat-app-demo"
|
|
|
|
vpc_cidr = "10.0.0.0/16"
|
|
azs = slice(data.aws_availability_zones.available.names, 0, 3)
|
|
|
|
container_name = "chat-app"
|
|
container_port = 3000
|
|
|
|
tags = {
|
|
Name = local.name
|
|
Example = local.name
|
|
Repository = "https://github.com/terraform-aws-modules/terraform-aws-ecs"
|
|
}
|
|
}
|