Skip to content

Commit 6161cb7

Browse files
fix(deps): update terraform-module
1 parent c166acc commit 6161cb7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

modules/database/mysql/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
module "db" {
1212
source = "terraform-ibm-modules/icd-mysql/ibm"
13-
version = "1.2.6"
13+
version = "1.2.7"
1414
resource_group_id = var.resource_group_id
1515
name = var.name
1616
region = var.region

modules/landing_zone/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module "landing_zone" {
22
count = var.enable_landing_zone ? 1 : 0
33
source = "terraform-ibm-modules/landing-zone/ibm"
4-
version = "5.23.0"
4+
version = "5.24.1"
55
prefix = local.prefix
66
region = local.region
77
tags = local.tags

modules/security/scc/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ locals {
1818

1919
module "event_notification" {
2020
source = "terraform-ibm-modules/event-notifications/ibm"
21-
version = "1.3.4"
21+
version = "1.4.3"
2222
resource_group_id = var.rg
2323
name = "${var.prefix}-scc-event_notification"
2424
plan = var.event_notification_plan
@@ -29,7 +29,7 @@ module "event_notification" {
2929

3030
module "create_scc_instance" {
3131
source = "terraform-ibm-modules/scc/ibm"
32-
version = "1.4.2"
32+
version = "1.5.0"
3333
instance_name = "${var.prefix}-scc-instance"
3434
plan = var.scc_plan
3535
region = local.scc_region
@@ -47,7 +47,7 @@ module "create_scc_instance" {
4747
module "create_profile_attachment" {
4848
count = var.scc_profile == null || var.scc_profile == "" ? 0 : 1
4949
source = "terraform-ibm-modules/scc/ibm//modules/attachment"
50-
version = "1.4.2"
50+
version = "1.5.0"
5151
profile_name = var.scc_profile
5252
profile_version = var.scc_profile_version
5353
scc_instance_id = module.create_scc_instance.guid

0 commit comments

Comments
 (0)