You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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. (#103)
Copy file name to clipboardExpand all lines: solutions/fully-configurable/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ variable "ibmcloud_api_key" {
10
10
11
11
variable"existing_resource_group_name" {
12
12
type=string
13
-
description="The name of a new or an existing resource group in which to provision resources to. If a prefix input variable is specified, the prefix is added to the name in the `<prefix>-<name>` format."
14
-
default="Default"
13
+
description="The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
Copy file name to clipboardExpand all lines: solutions/security-enforced/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ variable "ibmcloud_api_key" {
10
10
11
11
variable"existing_resource_group_name" {
12
12
type=string
13
-
description="The name of a new or an existing resource group in which to provision resources to. If a prefix input variable is specified, the prefix is added to the name in the `<prefix>-<name>` format."
14
-
default="Default"
13
+
description="The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
0 commit comments