Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/dedicated_host/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module "dedicated_host" {
source = "terraform-ibm-modules/dedicated-host/ibm"
version = "1.1.0"
version = "2.0.0"
dedicated_hosts = [
{
host_group_name = "${var.prefix}-dhgroup"
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.10.22"
version = "2.0.1"
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.8.36"
version = "2.1.17"
instance_name = "${var.prefix}-scc-instance"
plan = var.scc_plan
region = local.scc_region
Expand All @@ -49,7 +49,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.8.36"
version = "2.1.17"
profile_name = var.scc_profile
scc_instance_id = module.create_scc_instance.guid
attachment_name = "${var.prefix}-scc-attachment"
Expand Down