Skip to content

Commit 0409adc

Browse files
chore(deps): update terraform-module (#399)
1 parent 60eab54 commit 0409adc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module "secrets_manager_private_certificate" {
5050
# Minimal VPC for illustration purpose: 1 subnet across 1 availability zone
5151
module "basic_vpc" {
5252
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
53-
version = "7.22.7"
53+
version = "7.22.10"
5454
resource_group_id = module.resource_group.resource_group_id
5555
region = var.region
5656
name = "vpc"

examples/ha-complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module "secrets_manager_private_certificate" {
9191
# Minimal VPC for illustration purpose: 2 subnets across 2 availability zones
9292
module "basic_vpc" {
9393
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
94-
version = "7.22.7"
94+
version = "7.22.10"
9595
resource_group_id = module.resource_group.resource_group_id
9696
region = var.region
9797
name = "vpc"

tests/resources/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "landing_zone" {
66
source = "terraform-ibm-modules/landing-zone/ibm//patterns//vpc//module"
7-
version = "7.4.3"
7+
version = "7.4.4"
88
region = var.region
99
prefix = var.prefix
1010
tags = var.resource_tags
@@ -70,5 +70,5 @@ module "secrets_manager_private_certificate" {
7070

7171
data "ibm_is_security_group" "vpc_sg" {
7272
name = "management-vpe-sg"
73-
vpc = [for vpc in module.landing_zone.vpc_data : vpc if vpc.vpc_name == "${module.landing_zone.prefix}-management-vpc"][0].vpc_id
73+
vpc = [for vpc in module.landing_zone.vpc_data : vpc if vpc.vpc_name == "${module.landing_zone.prefix}-management"][0].vpc_id
7474
}

tests/resources/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ output "prefix" {
88
}
99

1010
output "management_vpc_crn" {
11-
value = [for vpc in module.landing_zone.vpc_data : vpc if vpc.vpc_name == "${module.landing_zone.prefix}-management-vpc"][0].vpc_crn
11+
value = [for vpc in module.landing_zone.vpc_data : vpc if vpc.vpc_name == "${module.landing_zone.prefix}-management"][0].vpc_crn
1212
description = "CRN of management VPC"
1313
}
1414

1515
output "default_network_acl_id" {
16-
value = [for vpc in module.landing_zone.vpc_data : vpc if vpc.vpc_name == "${module.landing_zone.prefix}-management-vpc"][0].vpc_data.default_network_acl
16+
value = [for vpc in module.landing_zone.vpc_data : vpc if vpc.vpc_name == "${module.landing_zone.prefix}-management"][0].vpc_data.default_network_acl
1717
description = "Default network ACL id"
1818
}
1919

0 commit comments

Comments
 (0)