Skip to content

Commit 24224bf

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. (#766)
1 parent b06b79a commit 24224bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solutions/fully-configurable/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ variable "prefix" {
4141

4242
variable "existing_resource_group_name" {
4343
type = string
44-
description = "The name of an existing resource group to provision the cluster."
45-
default = "Default"
44+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
45+
default = null
4646
}
4747

4848
variable "cluster_resource_tags" {

0 commit comments

Comments
 (0)