Document consul_datacenter param. (#13009)

This commit is contained in:
Luke Kysow 2022-05-10 11:04:13 -07:00 committed by GitHub
parent 4c0f840c89
commit 11b12885f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ module "my_task" {
port = 9090 port = 9090
retry_join = ["<address of the Consul server>"] retry_join = ["<address of the Consul server>"]
consul_datacenter = "<name of your 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. | | `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`. | | `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. | | `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 ### Running Terraform