-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
33 lines (32 loc) · 951 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
variable "azure_linux_vms" {
type = map(object({
size = string
admin_username = string
admin_password = string
use_ssh_authentication = bool
ssh_keys = list(string)
custom_data = string
availability_zone = string
network_configuration = object({
nics = list(object({
name = string
ip_configurations = list(object({
name = string
subnet_id = string
private_ip_address_allocation_method = string
private_ip_address = string
}))
}))
})
os_disk_config = object({
caching = string
storage_account_type = string
})
source_image_reference = object({
publisher = string
offer = string
sku = string
version = string
})
}))
}