Skip to content

Commit b6d583d

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. (#265)
* chore: update existing_resource_group_name default to null * update
1 parent 2f69f86 commit b6d583d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

solutions/fully-configurable/variables.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ variable "provider_visibility" {
2222

2323
variable "existing_resource_group_name" {
2424
type = string
25-
description = "The name of an existing resource group to provision resource in."
26-
default = "Default"
27-
nullable = false
25+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
26+
default = null
2827
}
2928

3029
variable "prefix" {

0 commit comments

Comments
 (0)