Skip to content

Commit

Permalink
fix(deps): update terraform-module (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops authored Mar 16, 2024
1 parent f8c4341 commit 5ad4b63
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solutions/instances/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.1.4"
version = "1.1.5"
resource_group_name = var.existing_resource_group == false ? var.resource_group_name : null
existing_resource_group_name = var.existing_resource_group == true ? var.resource_group_name : null
}
Expand All @@ -26,7 +26,7 @@ module "kms" {
}
count = var.existing_scc_cos_kms_key_crn != null || var.existing_scc_cos_bucket_name != null ? 0 : 1 # no need to create any KMS resources if passing an existing key, or bucket
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "4.8.3"
version = "4.8.4"
create_key_protect_instance = false
region = var.kms_region
existing_kms_instance_guid = var.existing_kms_guid
Expand Down Expand Up @@ -78,7 +78,7 @@ module "cos" {
}
count = var.existing_scc_cos_bucket_name == null ? 1 : 0 # no need to call COS module if consumer is passing existing COS bucket
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
version = "7.5.0"
version = "7.5.1"
resource_group_id = module.resource_group.resource_group_id
create_cos_instance = var.existing_cos_instance_crn == null ? true : false # don't create instance if existing one passed in
create_resource_key = false
Expand Down Expand Up @@ -112,7 +112,7 @@ module "cos" {

module "scc" {
source = "terraform-ibm-modules/scc/ibm"
version = "1.1.3"
version = "1.2.0"
resource_group_id = module.resource_group.resource_group_id
region = var.scc_region
instance_name = var.scc_instance_name
Expand Down

0 comments on commit 5ad4b63

Please sign in to comment.