Skip to content

Commit 3e3af8b

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. (#230)
1 parent 7d073df commit 3e3af8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

solutions/apps/variables.tf

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

5555
variable "existing_resource_group_name" {
5656
type = string
57-
description = "The name of an existing resource group to provision the resources."
58-
default = "Default"
57+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
58+
default = null
5959
}
6060

6161
variable "project_name" {

solutions/project/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ variable "region" {
5454

5555
variable "existing_resource_group_name" {
5656
type = string
57-
description = "The name of an existing resource group to provision the resources."
58-
default = "Default"
57+
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
58+
default = null
5959
}
6060

6161
variable "project_name" {

0 commit comments

Comments
 (0)