From 4923ef62f28c415ed36bfb8d32c2885778e5f887 Mon Sep 17 00:00:00 2001 From: manojvazirani <43583701+manojvazirani@users.noreply.github.com> Date: Wed, 24 Apr 2019 12:24:07 -0400 Subject: [PATCH] Remove Optional and Required in variables.tf --- infra/modules/providers/azure/service-plan/variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infra/modules/providers/azure/service-plan/variables.tf b/infra/modules/providers/azure/service-plan/variables.tf index 65f379c..c7219e0 100644 --- a/infra/modules/providers/azure/service-plan/variables.tf +++ b/infra/modules/providers/azure/service-plan/variables.tf @@ -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 -} \ No newline at end of file +}