main
tf 16 lines 189 Bytes
Raw
1 variable "name" {
2 type = string
3 }
4
5 variable "resource_group_name" {
6 type = string
7 }
8
9 variable "location" {
10 type = string
11 }
12
13 variable "tags" {
14 type = map(string)
15 default = {}
16 }