Skip to content

Commit 46ab61e

Browse files
authored
Merge branch 'main' into configuration
2 parents 54a3c60 + bb6a39a commit 46ab61e

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ You need the following permissions to run this module.
6565
| Name | Source | Version |
6666
|------|--------|---------|
6767
| <a name="module_backup_key_crn_parser"></a> [backup\_key\_crn\_parser](#module\_backup\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
68-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-rule-module | v1.30.0 |
68+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-rule-module | v1.31.0 |
6969
| <a name="module_kms_key_crn_parser"></a> [kms\_key\_crn\_parser](#module\_kms\_key\_crn\_parser) | terraform-ibm-modules/common-utilities/ibm//modules/crn-parser | 1.1.0 |
7070

7171
### Resources

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121

2222
module "key_protect_all_inclusive" {
2323
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
24-
version = "4.21.10"
24+
version = "5.0.1"
2525
resource_group_id = module.resource_group.resource_group_id
2626
# Note: Database instance and Key Protect must be created in the same region when using BYOK
2727
# See https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok
@@ -75,7 +75,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
7575
##############################################################################
7676

7777
module "cbr_zone" {
78-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-zone-module?ref=v1.30.0"
78+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-zone-module?ref=v1.31.0"
7979
name = "${var.prefix}-VPC-network-zone"
8080
zone_description = "CBR Network zone representing VPC"
8181
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

examples/fscloud/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
3939
##############################################################################
4040
module "cbr_zone" {
4141
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
42-
version = "1.30.0"
42+
version = "1.31.0"
4343
name = "${var.prefix}-VPC-network-zone"
4444
zone_description = "CBR Network zone representing VPC"
4545
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ resource "ibm_resource_tag" "rabbitmq_tag" {
310310
##############################################################################
311311
module "cbr_rule" {
312312
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
313-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-rule-module?ref=v1.30.0"
313+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-rule-module?ref=v1.31.0"
314314
rule_description = var.cbr_rules[count.index].description
315315
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
316316
rule_contexts = var.cbr_rules[count.index].rule_contexts

solutions/standard/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module "kms" {
3232
}
3333
count = local.create_new_kms_key ? 1 : 0
3434
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
35-
version = "4.21.10"
35+
version = "5.0.1"
3636
create_key_protect_instance = false
3737
region = local.kms_region
3838
existing_kms_instance_crn = var.existing_kms_instance_crn
@@ -393,7 +393,7 @@ module "secrets_manager_service_credentials" {
393393
count = length(local.service_credential_secrets) > 0 ? 1 : 0
394394
depends_on = [time_sleep.wait_for_rabbitmq_authorization_policy]
395395
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
396-
version = "2.1.1"
396+
version = "2.2.1"
397397
existing_sm_instance_guid = local.existing_secrets_manager_instance_guid
398398
existing_sm_instance_region = local.existing_secrets_manager_instance_region
399399
endpoint_type = var.existing_secrets_manager_endpoint_type

solutions/standard/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
random = {
1414
source = "hashicorp/random"
15-
version = "3.7.1"
15+
version = "3.7.2"
1616
}
1717
}
1818
}

0 commit comments

Comments
 (0)