rename folder

This commit is contained in:
Kelly Gremban
2022-10-03 09:38:38 -07:00
parent f4775c5bf6
commit 8a9f0ff064
5 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,29 @@
variable "resource_group_location" {
default = "eastus"
description = "Location of the resource group."
}
variable "resource_group_name_prefix" {
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "storage_account_name_prefix" {
default = "sa"
description = "Prefix of the storage account name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "eventhub_namespace_name_prefix" {
default = "namespace"
description = "Prefix of the event hub namespace name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "iothub_name_prefix" {
default = "iothub"
description = "Prefix of the iot hub name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "dps_name_prefix" {
default = "dps"
description = "Prefix of the dps name that's combined with a random ID so name is unique in your Azure subscription."
}