-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (49 loc) · 1.32 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
variable "location" {
description = "Azure location for the VM"
type = string
default = "canadacentral"
}
variable "tags" {
description = "Tags that will be applied to every associated VM resource"
type = map(string)
default = {}
}
variable "env" {
description = "(Required) 4 character string defining the environment name prefix for the VM"
type = string
default = "dev"
}
variable "group" {
description = "(Required) Character string defining the group for the target subscription"
type = string
default = "test"
}
variable "project" {
description = "(Required) Character string defining the project for the target subscription"
type = string
default = "test"
}
variable "userDefinedString" {
description = "(Required) User defined portion value for the name of the VM."
type = string
default= "test"
}
variable "front_door" {
description = "(Required) front door configuration."
type = any
default = null
}
variable "resource_groups" {
description = "(Required) Resource group object for the front door"
type = any
default = {}
}
variable "zones" {
description = "(Required) Resource DNS zone object for the front door"
type = any
default = {}
}
variable "origin_host_name" {
description = "(Required) Host name of origin for the front door"
type = string
}