You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,20 +104,20 @@ The table below correctly indicates which inputs are required.
104
104
105
105
### Major Changes (breaking and otherwise)
106
106
107
-
With the v0.25.0 release of this module, it has undergone major breaking
108
-
changes and added new features. Please see the [migration](MIGRATION.md)
107
+
With the v2.0.0 (a.k.a. v0.25.0) release of this module, it has undergone major breaking
108
+
changes and added new features. Please see the [migration](docs/migration-v1-v2.md)
109
109
document for details.
110
110
111
111
112
112
For a complete example, see [examples/complete](examples/complete).
113
113
114
-
For automated tests of the complete example using [bats](https://github.com/bats-core/bats-core) and [Terratest](https://github.com/gruntwork-io/terratest) (which tests and deploys the example on AWS),
114
+
For automated tests of the complete example using [bats](https://github.com/bats-core/bats-core) and [Terratest](https://github.com/gruntwork-io/terratest) (which tests and deploys the example on AWS),
115
115
see [test](test).
116
116
117
117
### Terraform Version
118
118
119
119
Terraform version 1.0 is out. Before that, there was Terraform version 0.15, 0.14, 0.13 and so on.
120
-
The v0.25.0 release of this module drops support for Terraform 0.13. That version is old and has lots of known issues.
120
+
The v2.0.0 release of this module drops support for Terraform 0.13. That version is old and has lots of known issues.
121
121
There are hardly any breaking changes between Terraform 0.13 and 1.0, so please upgrade to
122
122
the latest Terraform version before raising any issues about this module.
123
123
@@ -163,7 +163,7 @@ locals {
163
163
module "vpc" {
164
164
source = "cloudposse/vpc/aws"
165
165
# Cloud Posse recommends pinning every module to a specific version
166
-
# version = "x.x.x"
166
+
# version = "1.x.x"
167
167
168
168
cidr_block = "172.16.0.0/16"
169
169
@@ -174,12 +174,12 @@ module "vpc" {
174
174
module "subnets" {
175
175
source = "cloudposse/dynamic-subnets/aws"
176
176
# Cloud Posse recommends pinning every module to a specific version
177
-
# version = "x.x.x"
177
+
# version = "2.x.x"
178
178
179
179
availability_zones = var.availability_zones
180
180
vpc_id = module.vpc.vpc_id
181
-
igw_id = module.vpc.igw_id
182
-
cidr_block = module.vpc.vpc_cidr_block
181
+
igw_id = [module.vpc.igw_id]
182
+
ipv4_cidr_block= [module.vpc.vpc_cidr_block]
183
183
nat_gateway_enabled = true
184
184
nat_instance_enabled = false
185
185
@@ -190,7 +190,7 @@ module "subnets" {
190
190
module "eks_cluster" {
191
191
source = "cloudposse/eks-cluster/aws"
192
192
# Cloud Posse recommends pinning every module to a specific version
193
-
# version = "x.x.x"
193
+
# version = "2.x.x"
194
194
195
195
vpc_id = module.vpc.vpc_id
196
196
subnet_ids = module.subnets.public_subnet_ids
@@ -204,7 +204,7 @@ module "eks_cluster" {
204
204
module "eks_node_group" {
205
205
source = "cloudposse/eks-node-group/aws"
206
206
# Cloud Posse recommends pinning every module to a specific version
|[aws_ami.selected](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami)| data source |
283
284
|[aws_eks_cluster.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster)| data source |
284
285
|[aws_iam_policy_document.assume_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document)| data source |
286
+
|[aws_iam_policy_document.ipv6_eks_cni_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document)| data source |
285
287
|[aws_launch_template.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/launch_template)| data source |
286
288
|[aws_partition.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/partition)| data source |
Copy file name to clipboardExpand all lines: README.yaml
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -68,20 +68,20 @@ usage: |2-
68
68
69
69
### Major Changes (breaking and otherwise)
70
70
71
-
With the v0.25.0 release of this module, it has undergone major breaking
72
-
changes and added new features. Please see the [migration](MIGRATION.md)
71
+
With the v2.0.0 (a.k.a. v0.25.0) release of this module, it has undergone major breaking
72
+
changes and added new features. Please see the [migration](docs/migration-v1-v2.md)
73
73
document for details.
74
74
75
75
76
76
For a complete example, see [examples/complete](examples/complete).
77
77
78
-
For automated tests of the complete example using [bats](https://github.com/bats-core/bats-core) and [Terratest](https://github.com/gruntwork-io/terratest) (which tests and deploys the example on AWS),
78
+
For automated tests of the complete example using [bats](https://github.com/bats-core/bats-core) and [Terratest](https://github.com/gruntwork-io/terratest) (which tests and deploys the example on AWS),
79
79
see [test](test).
80
80
81
81
### Terraform Version
82
82
83
83
Terraform version 1.0 is out. Before that, there was Terraform version 0.15, 0.14, 0.13 and so on.
84
-
The v0.25.0 release of this module drops support for Terraform 0.13. That version is old and has lots of known issues.
84
+
The v2.0.0 release of this module drops support for Terraform 0.13. That version is old and has lots of known issues.
85
85
There are hardly any breaking changes between Terraform 0.13 and 1.0, so please upgrade to
86
86
the latest Terraform version before raising any issues about this module.
87
87
@@ -127,7 +127,7 @@ usage: |2-
127
127
module "vpc" {
128
128
source = "cloudposse/vpc/aws"
129
129
# Cloud Posse recommends pinning every module to a specific version
130
-
# version = "x.x.x"
130
+
# version = "1.x.x"
131
131
132
132
cidr_block = "172.16.0.0/16"
133
133
@@ -138,12 +138,12 @@ usage: |2-
138
138
module "subnets" {
139
139
source = "cloudposse/dynamic-subnets/aws"
140
140
# Cloud Posse recommends pinning every module to a specific version
141
-
# version = "x.x.x"
141
+
# version = "2.x.x"
142
142
143
143
availability_zones = var.availability_zones
144
144
vpc_id = module.vpc.vpc_id
145
-
igw_id = module.vpc.igw_id
146
-
cidr_block = module.vpc.vpc_cidr_block
145
+
igw_id = [module.vpc.igw_id]
146
+
ipv4_cidr_block= [module.vpc.vpc_cidr_block]
147
147
nat_gateway_enabled = true
148
148
nat_instance_enabled = false
149
149
@@ -154,7 +154,7 @@ usage: |2-
154
154
module "eks_cluster" {
155
155
source = "cloudposse/eks-cluster/aws"
156
156
# Cloud Posse recommends pinning every module to a specific version
157
-
# version = "x.x.x"
157
+
# version = "2.x.x"
158
158
159
159
vpc_id = module.vpc.vpc_id
160
160
subnet_ids = module.subnets.public_subnet_ids
@@ -168,7 +168,7 @@ usage: |2-
168
168
module "eks_node_group" {
169
169
source = "cloudposse/eks-node-group/aws"
170
170
# Cloud Posse recommends pinning every module to a specific version
|[aws_ami.selected](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami)| data source |
39
40
|[aws_eks_cluster.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster)| data source |
40
41
|[aws_iam_policy_document.assume_role](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document)| data source |
42
+
|[aws_iam_policy_document.ipv6_eks_cni_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document)| data source |
41
43
|[aws_launch_template.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/launch_template)| data source |
42
44
|[aws_partition.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/partition)| data source |
0 commit comments