-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
38 lines (31 loc) · 940 Bytes
/
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
# Environmental variables
variable "environment" {
description = "Environment for the deployment. Ex: prod, dev, test, sandbox"
type = string
}
variable "location" {
description = "Location for the deployment"
type = string
}
# Tag variables
variable "required_tags" {
description = "List of required tags to be applied to the resource group. Tags will be inherited by child resources automatically based on Azure policy."
type = map(any)
}
# Virtual Machine variables
variable "bootdiagsname" {
description = "Name of the storage account to store boot diagnostics"
type = string
}
variable "vmuser" {
description = "Username for virtual machines"
type = string
}
variable "vmpass" {
description = "Password for virtual machines"
type = string
}
variable "virtual_machines" {
description = "Values for the virtual machines to be created"
type = map(any)
}