Skip to content

Commit 2b478eb

Browse files
fix(deps): update terraform-module
1 parent 11f95f1 commit 2b478eb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ For more info, see [Understanding user roles and resources](https://cloud.ibm.co
147147

148148
| Name | Source | Version |
149149
|------|--------|---------|
150-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.0 |
150+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.28.1 |
151151
| <a name="module_existing_key_ring_keys"></a> [existing\_key\_ring\_keys](#module\_existing\_key\_ring\_keys) | terraform-ibm-modules/kms-key/ibm | v1.2.4 |
152-
| <a name="module_key_protect"></a> [key\_protect](#module\_key\_protect) | terraform-ibm-modules/key-protect/ibm | 2.8.6 |
152+
| <a name="module_key_protect"></a> [key\_protect](#module\_key\_protect) | terraform-ibm-modules/key-protect/ibm | 2.8.7 |
153153
| <a name="module_kms_key_rings"></a> [kms\_key\_rings](#module\_kms\_key\_rings) | terraform-ibm-modules/kms-key-ring/ibm | v2.5.0 |
154154
| <a name="module_kms_keys"></a> [kms\_keys](#module\_kms\_keys) | terraform-ibm-modules/kms-key/ibm | v1.2.4 |
155155

examples/advanced/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data "ibm_iam_account_settings" "iam_account_settings" {
2424
# A network zone with Service reference to schematics
2525
module "cbr_zone" {
2626
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
27-
version = "1.28.0"
27+
version = "1.28.1"
2828
name = "${var.prefix}-network-zone"
2929
zone_description = "CBR Network zone for schematics"
3030
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ locals {
5050
module "key_protect" {
5151
count = var.create_key_protect_instance ? 1 : 0
5252
source = "terraform-ibm-modules/key-protect/ibm"
53-
version = "2.8.6"
53+
version = "2.8.7"
5454
key_protect_name = var.key_protect_instance_name
5555
region = var.region
5656
allowed_network = var.key_protect_allowed_network
@@ -170,7 +170,7 @@ locals {
170170
module "cbr_rule" {
171171
count = length(var.cbr_rules)
172172
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
173-
version = "1.28.0"
173+
version = "1.28.1"
174174
rule_description = var.cbr_rules[count.index].description
175175
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
176176
rule_contexts = var.cbr_rules[count.index].rule_contexts

0 commit comments

Comments
 (0)