Skip to content

Commit 178faa1

Browse files
fix(deps): update terraform-module (#370)
1 parent 85d6a9d commit 178faa1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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 = "5.0.0"
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
@@ -308,7 +308,7 @@ resource "ibm_resource_tag" "rabbitmq_tag" {
308308
##############################################################################
309309
module "cbr_rule" {
310310
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
311-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-rule-module?ref=v1.30.0"
311+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-cbr//modules/cbr-rule-module?ref=v1.31.0"
312312
rule_description = var.cbr_rules[count.index].description
313313
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
314314
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 = "5.0.0"
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
@@ -392,7 +392,7 @@ module "secrets_manager_service_credentials" {
392392
count = length(local.service_credential_secrets) > 0 ? 1 : 0
393393
depends_on = [time_sleep.wait_for_rabbitmq_authorization_policy]
394394
source = "terraform-ibm-modules/secrets-manager/ibm//modules/secrets"
395-
version = "2.1.1"
395+
version = "2.2.0"
396396
existing_sm_instance_guid = local.existing_secrets_manager_instance_guid
397397
existing_sm_instance_region = local.existing_secrets_manager_instance_region
398398
endpoint_type = var.existing_secrets_manager_endpoint_type

0 commit comments

Comments
 (0)