Skip to content

Commit

Permalink
fix(deps): update terraform-module (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
terraform-ibm-modules-ops authored Jun 15, 2024
1 parent f80367e commit 918d009
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To create service credentials, access the Event Notifications service, and acces

| Name | Source | Version |
|------|--------|---------|
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.22.1 |
| <a name="module_cbr_rule"></a> [cbr\_rule](#module\_cbr\_rule) | terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module | 1.22.2 |

### Resources

Expand Down
2 changes: 1 addition & 1 deletion examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.1.5"
version = "1.1.6"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
Expand Down
6 changes: 3 additions & 3 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.1.5"
version = "1.1.6"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
Expand Down Expand Up @@ -46,7 +46,7 @@ locals {

module "cos" {
source = "terraform-ibm-modules/cos/ibm"
version = "8.3.2"
version = "8.4.0"
resource_group_id = module.resource_group.resource_group_id
region = var.region
cos_instance_name = "${var.prefix}-cos"
Expand Down Expand Up @@ -86,7 +86,7 @@ resource "ibm_is_subnet" "testacc_subnet" {

module "cbr_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
version = "1.22.1"
version = "1.22.2"
name = "${var.prefix}-VPC-network-zone"
zone_description = "CBR Network zone representing VPC"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
Expand Down
6 changes: 3 additions & 3 deletions examples/fscloud/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.1.5"
version = "1.1.6"
# if an existing resource group is not set (null) create a new one using prefix
resource_group_name = var.resource_group == null ? "${var.prefix}-resource-group" : null
existing_resource_group_name = var.resource_group
Expand Down Expand Up @@ -40,7 +40,7 @@ resource "ibm_is_subnet" "testacc_subnet" {

module "cbr_zone" {
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-zone-module"
version = "1.22.1"
version = "1.22.2"
name = "${var.prefix}-VPC-network-zone"
zone_description = "CBR Network zone representing VPC"
account_id = data.ibm_iam_account_settings.iam_account_settings.account_id
Expand All @@ -62,7 +62,7 @@ locals {

module "cos" {
source = "terraform-ibm-modules/cos/ibm//modules/fscloud"
version = "8.3.2"
version = "8.4.0"
resource_group_id = module.resource_group.resource_group_id
create_cos_instance = true
cos_instance_name = "${var.prefix}-cos"
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ resource "time_sleep" "wait_for_kms_authorization_policy" {
module "cbr_rule" {
count = length(var.cbr_rules) > 0 ? length(var.cbr_rules) : 0
source = "terraform-ibm-modules/cbr/ibm//modules/cbr-rule-module"
version = "1.22.1"
version = "1.22.2"
rule_description = var.cbr_rules[count.index].description
enforcement_mode = var.cbr_rules[count.index].enforcement_mode
rule_contexts = var.cbr_rules[count.index].rule_contexts
Expand Down
4 changes: 2 additions & 2 deletions solutions/standard/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.1.5"
version = "1.1.6"
resource_group_name = var.use_existing_resource_group == false ? var.resource_group_name : null
existing_resource_group_name = var.use_existing_resource_group == true ? var.resource_group_name : null
}
Expand Down Expand Up @@ -82,7 +82,7 @@ locals {

module "cos" {
source = "terraform-ibm-modules/cos/ibm"
version = "8.3.2"
version = "8.4.0"
create_cos_instance = var.existing_cos_instance_crn == null ? true : false
create_cos_bucket = var.existing_cos_bucket_name == null ? true : false
existing_cos_instance_id = var.existing_cos_instance_crn
Expand Down

0 comments on commit 918d009

Please sign in to comment.