mirror of https://github.com/status-im/consul.git
docs: Improve ECS routing example nesting (#10316)
This commit is contained in:
parent
c14439045f
commit
a12ce30023
|
@ -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 New Issue