Remove Optional and Required in variables.tf

This commit is contained in:
manojvazirani 2019-04-24 12:24:07 -04:00 коммит произвёл GitHub
Родитель beaaba9911
Коммит 4923ef62f2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,10 +1,10 @@
variable "resource_group_name" {
description = "(Optional) The name of the resource group in which to create the storage account. Changing this forces a new resource to be created. If omitted, will create a new RG based on the `name` above"
description = "The name of the resource group in which to create the storage account. Changing this forces a new resource to be created. If omitted, will create a new RG based on the `name` above"
default = ""
}
variable "resource_group_location" {
description = "(Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. The full list of Azure regions can be found at https://azure.microsoft.com/regions"
description = "Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. The full list of Azure regions can be found at https://azure.microsoft.com/regions"
}
variable "resource_tags" {
@ -14,7 +14,7 @@ variable "resource_tags" {
}
variable "service_plan_name" {
description = "(Optional) The name of the service plan to be created"
description = "The name of the service plan to be created"
default = ""
}
@ -41,4 +41,4 @@ variable "service_plan_capacity" {
variable "service_plan_reserved" {
description = "Is the Service Plan to be created reserved. Possible values are true/false"
default = true
}
}