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
Update Readme to include VPC breaking v9.0.0 change (#637)
* Update Readme to include the breaking v9.0.0 change
Updating the readme to indicated that the high_availability flag has been deprecated after v9.0.0 and include fixes on how to resolve the issue.
* Updating main.tf and README.md
* Formatting
Copy file name to clipboardExpand all lines: vpc/README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,19 @@ High Availability mode deploys in each AZ in a region. This is what you should c
18
18
**Please Note:** This should not be used in a PBMM Production environment.
19
19
20
20
Single Zone mode deployes in the first AZ in a region that is found by the availability lookup. This will work for if you want to save money in dev.
21
+
21
22

22
23
24
+
### Breaking change with v9.0.0
25
+
If you upgrade to v9.0.0 or above from a lower version, the `high_availability` flag is deprecated and no longer available. You will need to do the following in order to upgrade to a higher version:
26
+
1. Remove the `high_availability` flag
27
+
2. Instead add the following to your code:
28
+
```
29
+
availability_zones = 3
30
+
cidrsubnet_newbits = 8
31
+
```
32
+
3. Run terraform/terragrunt plan. You should have no changes in your infrastucture.
Copy file name to clipboardExpand all lines: vpc/main.tf
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,20 @@
19
19
* **Please Note:** This should not be used in a PBMM Production environment.
20
20
*
21
21
* Single Zone mode deployes in the first AZ in a region that is found by the availability lookup. This will work for if you want to save money in dev.
22
+
*
22
23
* 
23
24
*
25
+
*
26
+
* ### Breaking change with v9.0.0
27
+
* If you upgrade to v9.0.0 or above from a lower version, the `high_availability` flag is deprecated and no longer available. You will need to do the following in order to upgrade to a higher version:
28
+
* 1. Remove the `high_availability` flag
29
+
* 2. Instead add the following to your code:
30
+
* ```
31
+
* availability_zones = 3
32
+
* cidrsubnet_newbits = 8
33
+
* ```
34
+
* 3. Run terraform/terragrunt plan. You should have no changes in your infrastucture.
0 commit comments