Skip to content

Commit b6fb3bd

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. (#683)
1 parent bc3ea3b commit b6fb3bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solutions/fully-configurable/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.1"
7+
version = "1.3.0"
88
existing_resource_group_name = var.existing_resource_group_name
99
}
1010

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ variable "ibmcloud_api_key" {
66

77
variable "existing_resource_group_name" {
88
type = string
9-
description = "The name of an existing resource group to provision resource in."
9+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
1010
nullable = false
1111
}
1212

0 commit comments

Comments
 (0)