Skip to content

Commit e5a6120

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. (#68)
1 parent b5e2406 commit e5a6120

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solutions/fully-configurable/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ variable "ibmcloud_kms_api_key" {
2525

2626
variable "existing_resource_group_name" {
2727
type = string
28-
description = "The name of a new or existing resource group to provision resources in."
29-
default = "Default"
28+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
29+
default = null
3030
}
3131

3232

0 commit comments

Comments
 (0)