-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (50 loc) · 1.5 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
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
}
variable "group" {
description = "(Required) Character string defining the group for the target subscription"
type = string
}
variable "project" {
description = "(Required) Character string defining the project for the target subscription"
type = string
}
variable "userDefinedString" {
description = "(Required) User defined portion value for the name of the VM."
type = string
}
variable "vmss" {
description = "Details about vmss config"
type = any
default = {}
}
variable "resource_groups" {
description = "(Required) Resource group object for the VM"
type = any
default = {}
}
variable "subnets" {
description = "(Required) List of subnet objects for the VM"
type = any
}
variable "custom_data" {
description = "(Optional) The Base64-Encoded Custom Data which should be used for this Virtual Machine Scale Set."
type = string
default = null
}
variable "user_data" {
description = "(Optional) The Base64-Encoded User Data which should be used for this Virtual Machine Scale Set."
type = string
default = null
}