Skip to content

Commit 161d59f

Browse files
fix(deps): update terraform dependencies to v2
1 parent d5b889a commit 161d59f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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: 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.10.22"
21+
version = "2.3.6"
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.8.36"
32+
version = "2.1.21"
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.21"
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)