Skip to content

Commit

Permalink
fix(deps): update terraform-module (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops authored Jun 8, 2024
1 parent 6426067 commit 8049a6c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/create_vpc/modules/landing_zone_vpc/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "create_vpc" {
source = "terraform-ibm-modules/landing-zone-vpc/ibm"
version = "7.18.1"
version = "7.18.2"
prefix = local.prefix
region = local.region
tags = local.tags
Expand Down
2 changes: 1 addition & 1 deletion modules/database/mysql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

module "db" {
source = "terraform-ibm-modules/icd-mysql/ibm"
version = "1.2.6"
version = "1.2.7"
resource_group_id = var.resource_group_id
name = var.name
region = var.region
Expand Down
2 changes: 1 addition & 1 deletion modules/landing_zone/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "landing_zone" {
count = var.enable_landing_zone ? 1 : 0
source = "terraform-ibm-modules/landing-zone/ibm"
version = "5.23.0"
version = "5.24.3"
prefix = local.prefix
region = local.region
tags = local.tags
Expand Down
6 changes: 3 additions & 3 deletions modules/security/scc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {

module "event_notification" {
source = "terraform-ibm-modules/event-notifications/ibm"
version = "1.3.4"
version = "1.4.3"
resource_group_id = var.rg
name = "${var.prefix}-scc-event_notification"
plan = var.event_notification_plan
Expand All @@ -29,7 +29,7 @@ module "event_notification" {

module "create_scc_instance" {
source = "terraform-ibm-modules/scc/ibm"
version = "1.4.2"
version = "1.6.0"
instance_name = "${var.prefix}-scc-instance"
plan = var.scc_plan
region = local.scc_region
Expand All @@ -47,7 +47,7 @@ module "create_scc_instance" {
module "create_profile_attachment" {
count = var.scc_profile == null || var.scc_profile == "" ? 0 : 1
source = "terraform-ibm-modules/scc/ibm//modules/attachment"
version = "1.4.2"
version = "1.6.0"
profile_name = var.scc_profile
profile_version = var.scc_profile_version
scc_instance_id = module.create_scc_instance.guid
Expand Down

0 comments on commit 8049a6c

Please sign in to comment.