Skip to content

Commit d774f20

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. (#143)
* chore: update existing_resource_group_name default to null * update
1 parent eba4880 commit d774f20

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
@@ -65,9 +65,8 @@ variable "prefix" {
6565

6666
variable "existing_resource_group_name" {
6767
type = string
68-
description = "The name of the existing resource group in which to provision resources to."
69-
default = "Default"
70-
nullable = false
68+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
69+
default = null
7170
}
7271

7372
variable "resource_tags" {

0 commit comments

Comments
 (0)