Skip to content
Merged
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 examples/landing_zone/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module "resource_group" {
module "cos_bucket" {
count = var.enable_vpc_flow_logs ? 1 : 0
source = "terraform-ibm-modules/cos/ibm"
version = "10.1.2"
version = "10.1.3"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cross_region_location = null
Expand Down
4 changes: 2 additions & 2 deletions solutions/fully-configurable/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module "cos_buckets" {
count = var.enable_vpc_flow_logs ? 1 : 0
depends_on = [time_sleep.wait_for_cross_account_authorization_policy[0]]
source = "terraform-ibm-modules/cos/ibm//modules/buckets"
version = "10.1.2"
version = "10.1.3"
bucket_configs = local.bucket_config
}

Expand Down Expand Up @@ -163,7 +163,7 @@ module "kms" {
}
count = local.create_kms_key ? 1 : 0 # no need to create any KMS resources if not passing an existing KMS CRN or existing KMS key CRN is provided
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
version = "5.1.8"
version = "5.1.9"
create_key_protect_instance = false
region = local.kms_region
existing_kms_instance_crn = var.existing_kms_instance_crn
Expand Down
2 changes: 1 addition & 1 deletion solutions/fully-configurable/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
# Lock DA into an exact provider version - renovate automation will keep it updated
ibm = {
source = "IBM-Cloud/ibm"
version = "1.79.2"
version = "1.80.0"
}
time = {
source = "hashicorp/time"
Expand Down