docs: Improve ECS routing example nesting (#10316)

This commit is contained in:
allisaurus 2021-06-07 09:28:06 -07:00 committed by GitHub
parent 60d51a50d1
commit f2c2809612
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 3 deletions

View File

@ -367,12 +367,19 @@ module "web" {
local_bind_port = 8080
}
]
environment = [
container_definitions = [
{
name = "BACKEND_URL"
value = "http://localhost:8080"
name = "web"
environment = [
{
name = "BACKEND_URL"
value = "http://localhost:8080"
}
]
...
}
]
...
}
```