Skip to content

Commit 7b98a96

Browse files
authored
fix: The default value of existing_resource_group_name is now null, which means it will default to the default resource group in your account. Previously it was defaulting to "Default" which may not exist in every account. (#19)
1 parent e31c5cd commit 7b98a96

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

solutions/catalog/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module "resource_group" {
66
source = "terraform-ibm-modules/resource-group/ibm"
7-
version = "1.2.0"
7+
version = "1.3.0"
88
existing_resource_group_name = var.existing_resource_group_name
99
}
1010

solutions/catalog/variables.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ variable "ibmcloud_api_key" {
1212

1313
variable "existing_resource_group_name" {
1414
type = string
15-
description = "The name of an existing resource group to provision resource in."
16-
default = "Default"
17-
nullable = false
15+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
16+
default = null
1817
}
1918

2019
variable "label" {

solutions/catalog/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
ibm = {
55
source = "IBM-Cloud/ibm"
6-
version = "1.78.3"
6+
version = "1.80.2"
77
}
88
}
99
}

0 commit comments

Comments
 (0)