demo_solution/modules/repo_terraform.azurerm.rg/variables.tf (13 lines of code) (raw):

variable "name" { description = "The name which should be used for this Resource Group" type = string } variable "location" { description = "The Azure Region where the Resource Group should exist" type = string } variable "tags" { description = "A mapping of tags to assign to the resource" type = map(string) default = {} }