From 11b12885f31415fa88ef19dc24e92bf3207a1af0 Mon Sep 17 00:00:00 2001 From: Luke Kysow <1034429+lkysow@users.noreply.github.com> Date: Tue, 10 May 2022 11:04:13 -0700 Subject: [PATCH] Document consul_datacenter param. (#13009) --- website/content/docs/ecs/terraform/install.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/content/docs/ecs/terraform/install.mdx b/website/content/docs/ecs/terraform/install.mdx index 0e690e5601..e810e141ae 100644 --- a/website/content/docs/ecs/terraform/install.mdx +++ b/website/content/docs/ecs/terraform/install.mdx @@ -64,6 +64,7 @@ module "my_task" { port = 9090 retry_join = ["
"] + consul_datacenter = "" } ``` @@ -80,6 +81,7 @@ The following fields are required. Refer to the [module reference documentation] | `essential` | boolean | Must be `true` to ensure the health of your application container affects the health status of the task. | | `port` | integer | The port that your application listens on, if any. If your application does not listen on a port, set `outbound_only = true`. | | `retry_join` | list | The is the [`retry_join`](/docs/agent/options#_retry_join) option for the Consul agent, which specifies the locations of your Consul servers. | +| `consul_datacenter` | string | The name of your Consul datacenter. | ### Running Terraform