Skip to content

Commit a195b4c

Browse files
committed
updated variables default names
1 parent dc10b61 commit a195b4c

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

samples/function-app-managed-identity/python/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variable "prefix" {
22
description = "(Optional) Specifies the prefix for the name of the Azure resources."
33
type = string
4-
default = "local"
4+
default = "funcmi"
55

66
validation {
77
condition = var.prefix == null || length(var.prefix) >= 2

samples/function-app-storage-http/dotnet/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variable "resource_group_name" {
77
variable "prefix" {
88
description = "(Optional) Specifies the prefix for the name of the Azure resources."
99
type = string
10-
default = "local"
10+
default = "funchttp"
1111

1212
validation {
1313
condition = var.prefix == null || length(var.prefix) >= 2

samples/web-app-cosmosdb-mongodb-api/python/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variable "prefix" {
22
description = "(Optional) Specifies the prefix for the name of the Azure resources."
33
type = string
4-
default = "terraform"
4+
default = "webdb"
55

66
validation {
77
condition = var.prefix == null || length(var.prefix) >= 2

samples/web-app-managed-identity/python/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variable "prefix" {
22
description = "(Optional) Specifies the prefix for the name of the Azure resources."
33
type = string
4-
default = "local"
4+
default = "webmi"
55

66
validation {
77
condition = var.prefix == null || length(var.prefix) >= 2

samples/web-app-sql-database/python/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variable "prefix" {
22
description = "(Optional) Specifies the prefix for the name of the Azure resources."
33
type = string
4-
default = "local"
4+
default = "websql"
55

66
validation {
77
condition = var.prefix == null || length(var.prefix) >= 2

0 commit comments

Comments
 (0)