Skip to content

fix(deps): update terraform dependencies #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 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.2.0"
version = "1.3.0"
# 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 All @@ -17,7 +17,7 @@ module "resource_group" {
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
module "crn_parser_subid" {
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.subscription_id_secret_crn
}

Expand Down
6 changes: 3 additions & 3 deletions examples/bdr_complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.2.0"
version = "1.3.0"
# 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 All @@ -22,7 +22,7 @@ module "resource_group" {
module "crn_parser_token" {
count = var.repos_git_token_secret_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.repos_git_token_secret_crn
}

Expand All @@ -46,7 +46,7 @@ locals {
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
module "crn_parser_subid" {
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.subscription_id_secret_crn
}

Expand Down
6 changes: 3 additions & 3 deletions examples/dr_complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.2.0"
version = "1.3.0"
# 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 All @@ -22,7 +22,7 @@ module "resource_group" {
module "crn_parser_token" {
count = var.repos_git_token_secret_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.repos_git_token_secret_crn
}

Expand All @@ -46,7 +46,7 @@ locals {
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
module "crn_parser_subid" {
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.subscription_id_secret_crn
}

Expand Down
10 changes: 5 additions & 5 deletions solutions/fully-configurable/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ locals {

module "resource_group" {
source = "terraform-ibm-modules/resource-group/ibm"
version = "1.2.0"
version = "1.3.0"
existing_resource_group_name = var.existing_resource_group_name
}

Expand All @@ -24,7 +24,7 @@ module "resource_group" {
module "crn_parser_token" {
count = var.repos_git_token_secret_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.repos_git_token_secret_crn
}

Expand Down Expand Up @@ -52,7 +52,7 @@ locals {
module "crn_parser_subid" {
count = var.subscription_id_secret_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.subscription_id_secret_crn
}

Expand Down Expand Up @@ -122,7 +122,7 @@ data "ibm_iam_account_settings" "provider_account" {}
module "crn_parser_mq_capacity_instance_crn" {
count = var.mq_s2s_policy_target_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.mq_s2s_policy_target_crn
}

Expand Down Expand Up @@ -224,7 +224,7 @@ resource "ibm_iam_authorization_policy" "mq_s2s_policy_account_scope" {
module "crn_parser_db2_instance_crn" {
count = var.db2_s2s_policy_target_crn != null ? 1 : 0
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
version = "1.1.0"
version = "1.2.0"
crn = var.db2_s2s_policy_target_crn
}

Expand Down
2 changes: 1 addition & 1 deletion solutions/fully-configurable/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
ibm = {
source = "IBM-Cloud/ibm"
version = "1.79.0"
version = "1.81.0"
}
time = {
source = "hashicorp/time"
Expand Down