diff --git a/website/content/docs/ecs/get-started/install.mdx b/website/content/docs/ecs/get-started/install.mdx index 058227f7a8..bd6e93fbbd 100644 --- a/website/content/docs/ecs/get-started/install.mdx +++ b/website/content/docs/ecs/get-started/install.mdx @@ -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" + } + ] + ... } ] + ... } ```