github.com/loicalbertin/terraform@v0.6.15-0.20170626182346-8e2583055467/examples/azure-servicebus-create-topic-and-subscription/variables.tf (about)

     1  variable "resource_group" {
     2    description = "The name of the resource group in which to create the Service Bus"
     3  }
     4  
     5  variable "location" {
     6    description = "The location/region where the Service Bus is created. Changing this forces a new resource to be created."
     7    default     = "southcentralus"
     8  }
     9  
    10  variable "unique" {
    11    description = "a unique string that will be used to comprise the names of the Service Bus, Topic, and Subscription name spaces"
    12  }