Skip to content

Commit 9d4fe27

Browse files
authored
fix: Updated to landing-zone-vpc 7.16.1 which contains a fix for a Terraform bug with a conditional statement. Instead of ternary style we are switching to a "for loop with if condition" style for the ACL resource to avoid the bug. (#701)
1 parent 1062ba2 commit 9d4fe27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ module "cluster_pattern" {
854854
| <a name="module_placement_group_map"></a> [placement\_group\_map](#module\_placement\_group\_map) | ./dynamic_values/config_modules/list_to_map | n/a |
855855
| <a name="module_ssh_keys"></a> [ssh\_keys](#module\_ssh\_keys) | ./ssh_key | n/a |
856856
| <a name="module_teleport_config"></a> [teleport\_config](#module\_teleport\_config) | ./teleport_config | n/a |
857-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-ibm-modules/landing-zone-vpc/ibm | 7.15.0 |
857+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-ibm-modules/landing-zone-vpc/ibm | 7.16.1 |
858858
| <a name="module_vsi"></a> [vsi](#module\_vsi) | terraform-ibm-modules/landing-zone-vsi/ibm | 3.2.1 |
859859

860860
### Resources

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ locals {
1212
# Due to existing implicit dependencies we do not think this will be an issue, including auth policies for activity tracker.
1313
module "vpc" {
1414
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
15-
version = "7.15.0"
15+
version = "7.16.1"
1616
for_each = local.vpc_map
1717
name = each.value.prefix
1818
existing_vpc_id = each.value.existing_vpc_id

0 commit comments

Comments
 (0)