Skip to content

Commit 21d69a2

Browse files
authored
fix(deps): update terraform-module (#260)
1 parent 0ac93bb commit 21d69a2

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To create service credentials, access the Event Notifications service, and acces
7676

7777
| Name | Source | Version |
7878
|------|--------|---------|
79-
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.23.0 |
79+
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.23.1 |
8080

8181
### Resources
8282

examples/complete/main.tf

Lines changed: 5 additions & 5 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.13.4"
24+
version = "4.15.2"
2525
resource_group_id = module.resource_group.resource_group_id
2626
region = var.region
2727
key_protect_instance_name = "${var.prefix}-kp"
@@ -46,7 +46,7 @@ locals {
4646

4747
module "cos" {
4848
source = "terraform-ibm-modules/cos/ibm"
49-
version = "8.5.3"
49+
version = "8.9.1"
5050
resource_group_id = module.resource_group.resource_group_id
5151
region = var.region
5252
cos_instance_name = "${var.prefix}-cos"
@@ -86,7 +86,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
8686

8787
module "cbr_vpc_zone" {
8888
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
89-
version = "1.23.0"
89+
version = "1.23.1"
9090
name = "${var.prefix}-VPC-network-zone"
9191
zone_description = "CBR Network zone representing VPC"
9292
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -98,7 +98,7 @@ module "cbr_vpc_zone" {
9898

9999
module "cbr_zone_schematics" {
100100
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
101-
version = "1.23.0"
101+
version = "1.23.1"
102102
name = "${var.prefix}-schematics-zone"
103103
zone_description = "CBR Network zone containing Schematics"
104104
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -122,7 +122,7 @@ module "event_notification" {
122122
kms_encryption_enabled = true
123123
existing_kms_instance_crn = module.key_protect_all_inclusive.key_protect_id
124124
root_key_id = module.key_protect_all_inclusive.keys["${local.key_ring_name}.${local.key_name}"].key_id
125-
kms_endpoint_url = module.key_protect_all_inclusive.kp_public_endpoint
125+
kms_endpoint_url = module.key_protect_all_inclusive.kms_public_endpoint
126126
tags = var.resource_tags
127127
service_endpoints = "public"
128128
service_credential_names = var.service_credential_names

examples/fscloud/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ resource "ibm_is_subnet" "testacc_subnet" {
4040

4141
module "cbr_vpc_zone" {
4242
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
43-
version = "1.23.0"
43+
version = "1.23.1"
4444
name = "${var.prefix}-VPC-network-zone"
4545
zone_description = "CBR Network zone representing VPC"
4646
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -52,7 +52,7 @@ module "cbr_vpc_zone" {
5252

5353
module "cbr_zone_schematics" {
5454
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
55-
version = "1.23.0"
55+
version = "1.23.1"
5656
name = "${var.prefix}-schematics-zone"
5757
zone_description = "CBR Network zone containing Schematics"
5858
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
@@ -77,7 +77,7 @@ locals {
7777

7878
module "cos" {
7979
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
80-
version = "8.5.3"
80+
version = "8.9.1"
8181
resource_group_id = module.resource_group.resource_group_id
8282
create_cos_instance = true
8383
cos_instance_name = "${var.prefix}-cos"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ resource "time_sleep" "wait_for_kms_authorization_policy" {
164164
module "cbr_rule" {
165165
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
166166
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
167-
version = "1.23.0"
167+
version = "1.23.1"
168168
rule_description = var.cbr_rules[count.index].description
169169
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
170170
rule_contexts = var.cbr_rules[count.index].rule_contexts

solutions/standard/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ module "kms" {
3434
}
3535
count = var.existing_kms_root_key_crn != null ? 0 : 1 # no need to create any KMS resources if passing an existing key
3636
source = "terraform-ibm-modules/kms-all-inclusive/ibm"
37-
version = "4.13.4"
37+
version = "4.15.2"
3838
create_key_protect_instance = false
3939
region = local.kms_region
40-
existing_kms_instance_guid = var.existing_kms_instance_crn
40+
existing_kms_instance_crn = var.existing_kms_instance_crn
4141
key_ring_endpoint_type = var.kms_endpoint_type
4242
key_endpoint_type = var.kms_endpoint_type
4343
keys = [
@@ -88,7 +88,7 @@ locals {
8888
module "cos" {
8989
count = var.existing_cos_bucket_name != null ? 0 : 1
9090
source = "terraform-ibm-modules/cos/ibm"
91-
version = "8.8.0"
91+
version = "8.9.1"
9292
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
9393
create_cos_bucket = var.existing_cos_bucket_name == null ? true : false
9494
existing_cos_instance_id = var.existing_cos_instance_crn

0 commit comments

Comments
 (0)