Skip to content

Commit b6985a0

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. Previouslly it was defauting to "Default" which may not exist in every account. (#1033)
1 parent daac759 commit b6985a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ locals {
88

99
module "resource_group" {
1010
source = "terraform-ibm-modules/resource-group/ibm"
11-
version = "1.2.1"
11+
version = "1.3.0"
1212
existing_resource_group_name = var.existing_resource_group_name
1313
}
1414

solutions/fully-configurable/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ variable "provider_visibility" {
2121

2222
variable "existing_resource_group_name" {
2323
type = string
24-
description = "The name of an existing resource group to provision the resources."
25-
default = "Default"
24+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
25+
default = null
2626
}
2727

2828
variable "prefix" {

0 commit comments

Comments
 (0)