docs: Improve ECS routing example nesting (#10316)
This commit is contained in:
parent
60d51a50d1
commit
f2c2809612
|
@ -367,12 +367,19 @@ module "web" {
|
||||||
local_bind_port = 8080
|
local_bind_port = 8080
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
container_definitions = [
|
||||||
|
{
|
||||||
|
name = "web"
|
||||||
environment = [
|
environment = [
|
||||||
{
|
{
|
||||||
name = "BACKEND_URL"
|
name = "BACKEND_URL"
|
||||||
value = "http://localhost:8080"
|
value = "http://localhost:8080"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
...
|
||||||
|
}
|
||||||
|
]
|
||||||
|
...
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue