Skip to content

Commit

Permalink
chore(deps): update terraform terraform-ibm-modules/landing-zone-vpc/…
Browse files Browse the repository at this point in the history
…ibm to v7.3.2 (#339)

Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
  • Loading branch information
terraform-ibm-modules-ops and renovate-bot authored Jul 17, 2023
1 parent 0075adb commit 6fd52bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/crossaccounts/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ data "ibm_resource_group" "existing_resource_group_account_a" {

module "vpc_a" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.3.1"
version = "7.3.2"
resource_group_id = var.resource_group_account_a != null ? data.ibm_resource_group.existing_resource_group_account_a[0].id : ibm_resource_group.resource_group_account_a[0].id
region = var.region_account_a
prefix = var.prefix_account_a
Expand Down Expand Up @@ -61,7 +61,7 @@ module "vpc_b" {
# if existing_vpc_crn_account_b is set using the existing VPC instead of creating a new one
count = var.existing_vpc_crn_account_b != null ? 0 : 1
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.3.1"
version = "7.3.2"
resource_group_id = var.resource_group_account_b != null ? data.ibm_resource_group.existing_resource_group_account_b[0].id : ibm_resource_group.resource_group_account_b[0].id
region = var.region_account_b
prefix = var.prefix_account_b
Expand Down
4 changes: 2 additions & 2 deletions examples/two-vpcs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data "ibm_resource_group" "existing_resource_group" {

module "vpc_1" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.3.1"
version = "7.3.2"
resource_group_id = var.resource_group != null ? data.ibm_resource_group.existing_resource_group[0].id : ibm_resource_group.resource_group[0].id
region = var.region
prefix = var.prefix
Expand All @@ -35,7 +35,7 @@ module "vpc_1" {

module "vpc_2" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.3.1"
version = "7.3.2"
resource_group_id = var.resource_group != null ? data.ibm_resource_group.existing_resource_group[0].id : ibm_resource_group.resource_group[0].id
region = var.region
prefix = var.prefix
Expand Down

0 comments on commit 6fd52bc

Please sign in to comment.