Skip to content

Commit

Permalink
Update docs/migration-0.45.x+.md
Browse files Browse the repository at this point in the history
Co-authored-by: nitrocode <nitrocode@users.noreply.github.com>
  • Loading branch information
aknysh and nitrocode authored Jan 8, 2022
1 parent afe9b77 commit 0a9b8c9
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions docs/migration-0.45.x+.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,15 @@ Some variables have been deprecated (see `variables-deprecated.tf`), don't use t
the `allowed_security_group_ids` variable, for example:

```hcl
module "eks_workers" {
source = "cloudposse/eks-workers/aws"
}
module "eks_workers_2" {
source = "cloudposse/eks-workers/aws"
}
module "eks_workers" {
source = "cloudposse/eks-workers/aws"
}
module "eks_workers_2" {
source = "cloudposse/eks-workers/aws"
}
module "eks_cluster" {
source = "cloudposse/eks-cluster/aws"
allowed_security_group_ids = [module.eks_workers.security_group_id, module.eks_workers_2.security_group_id]
}
```
module "eks_cluster" {
source = "cloudposse/eks-cluster/aws"
allowed_security_group_ids = [module.eks_workers.security_group_id, module.eks_workers_2.security_group_id]
}

0 comments on commit 0a9b8c9

Please sign in to comment.