2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-13 15:26:48 +00:00

update terraform module location for consul aws modules ()

Co-authored-by: Paul Glass <pglass@hashicorp.com>
This commit is contained in:
Frank DiRocco 2022-06-24 01:10:44 -04:00 committed by GitHub
parent 02ee123b7b
commit 4a4a64446f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

@ -84,7 +84,7 @@ is not provided when `consul_partitions_enabled = true`, will default to the `de
```hcl
module "acl_controller" {
source = "hashicorp/consul/aws-ecs//modules/acl-controller"
source = "hashicorp/consul/aws//modules/acl-controller"
...
@ -109,7 +109,7 @@ The following example demonstrates how to create a `mesh-task` assigned to the a
```hcl
module "my_task" {
source = "hashicorp/consul/aws-ecs//modules/mesh-task"
source = "hashicorp/consul/aws//modules/mesh-task"
family = "my_task"
...

@ -68,7 +68,7 @@ The `mesh-task` module is used as follows:
```hcl
module "my_task" {
source = "hashicorp/consul/aws-ecs//modules/mesh-task"
source = "hashicorp/consul/aws//modules/mesh-task"
version = "<latest version>"
family = "my_task"

@ -80,7 +80,7 @@ the AWS IAM auth method.
```hcl
module "acl_controller" {
source = "hashicorp/consul/aws-ecs//modules/acl-controller"
source = "hashicorp/consul/aws//modules/acl-controller"
version = "<version>"
consul_bootstrap_token_secret_arn = aws_secretsmanager_secret.bootstrap_token.arn
@ -141,7 +141,7 @@ should be the same as the `name_prefix` you provide to the ACL controller module
```hcl
module "my_task" {
source = "hashicorp/consul/aws-ecs//modules/mesh-task"
source = "hashicorp/consul/aws//modules/mesh-task"
version = "<version>"
...