Skip to content

Commit cf2e9fc

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. (#39)
1 parent af2539c commit cf2e9fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solutions/quickstart/variables.tf

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

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

4444
variable "region" {

0 commit comments

Comments
 (0)