-
Notifications
You must be signed in to change notification settings - Fork 1
/
rg-vars.tf
36 lines (36 loc) · 1.03 KB
/
rg-vars.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
variable "ssh-allowlist" {
type = list(string)
description = "IP(s) allowed for SSH access to the dev box"
}
variable "location" {
type = string
description = "Location from verified location list (az account list-locations -o table)"
}
variable "resource-prefix" {
type = string
description = "Prefix to apply to all resources"
}
variable "storage-prefix" {
type = string
description = "Prefix (shorthand) to apply to shared storage account"
}
variable "cdbvm-username" {
type = string
description = "VM username"
}
variable "cdbvm-size" {
type = string
description = "VM size (az vm list-sizes --location $location -o table)"
}
variable "cdbvm-nic-accelerated-networking" {
type = string
description = "Enable accelerated networking for NIC. Ensure it is supported by VM size."
}
variable "cdbvm-comp-name" {
type = string
description = "VM computer name"
}
variable "tag-stage" {
type = string
description = "Stage tag assigned to all resources"
}