Skip to content

Commit c45f363

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. (#314)
* chore: update existing_resource_group_name default to null * update
1 parent ebd5c18 commit c45f363

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

solutions/fully-configurable/variables.tf

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

1111
variable "existing_resource_group_name" {
1212
type = string
13-
description = "The name of an existing resource group to provision resource in."
14-
default = "Default"
15-
nullable = false
13+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
14+
default = null
1615
}
1716

1817
variable "prefix" {

solutions/security-enforced/variables.tf

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

1111
variable "existing_resource_group_name" {
1212
type = string
13-
description = "The name of an existing resource group to provision resource in."
14-
default = "Default"
15-
nullable = false
13+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
14+
default = null
1615
}
1716

1817
variable "prefix" {

0 commit comments

Comments
 (0)