This is my .tfvars file
vars_by_workspace = {
qa = {
ecs_web_app_config = {}
map_container_environment = {
POOL_SIZE = "10"
SENDGRID_API_KEY = ""
ENVIRONMENT = "Stage"
...
}
secrets = [...]
}
}
prod = {
ecs_web_app_config = {]
map_container_environment = {
POOL_SIZE = "10"
SENDGRID_API_KEY = ""
ENVIRONMENT = "Prod"
...
}
secrets = [...]
}
}