Skip to content

Commit ad3983f

Browse files
fix(deps): update terraform-module to v2
1 parent 980cfc7 commit ad3983f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/dedicated_host/main.tf

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

55
module "dedicated_host" {
66
source = "terraform-ibm-modules/dedicated-host/ibm"
7-
version = "1.1.0"
7+
version = "2.0.0"
88
dedicated_hosts = [
99
{
1010
host_group_name = "${var.prefix}-dhgroup"

modules/security/scc/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module "event_notification" {
2929

3030
module "create_scc_instance" {
3131
source = "terraform-ibm-modules/scc/ibm"
32-
version = "1.8.36"
32+
version = "2.1.17"
3333
instance_name = "${var.prefix}-scc-instance"
3434
plan = var.scc_plan
3535
region = local.scc_region
@@ -49,7 +49,7 @@ module "create_scc_instance" {
4949
module "create_profile_attachment" {
5050
count = var.scc_profile == null || var.scc_profile == "" ? 0 : 1
5151
source = "terraform-ibm-modules/scc/ibm//modules/attachment"
52-
version = "1.8.36"
52+
version = "2.1.17"
5353
profile_name = var.scc_profile
5454
scc_instance_id = module.create_scc_instance.guid
5555
attachment_name = "${var.prefix}-scc-attachment"

0 commit comments

Comments
 (0)