-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tfstack.hcl
72 lines (57 loc) · 1.42 KB
/
variables.tfstack.hcl
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
62
63
64
65
66
67
68
69
70
71
72
variable "azurerm_provider" {
type = object({
identity_token = string
client_id = string
subscription_id = string
tenant_id = string
})
ephemeral = true
}
variable "demo_resource_group" {
type = object({
environment = string
location = string
tags = map(string)
})
}
variable "demo_storage_account" {
type = object({
account_tier = string
account_replication_type = string
})
}
variable "demo_networking_resource_group" {
type = object({
environment = string
location = string
tags = map(string)
})
}
variable "demo_virtual_network" {
type = object({
cidr_range = string
tags = map(string)
})
}
variable "demo_subnet_01" {
type = object({
address_prefixes = list(string)
})
}
variable "demo_windows_vm" {
description = "Configuration for the demo Windows VM"
type = object({
vm_size = string
admin_username = string
admin_password = string
os_disk_caching = string
os_disk_storage_account_type = string
image_publisher = string
image_offer = string
image_sku = string
image_version = string
ip_configuration_name = string
private_ip_address_allocation = string
tags = map(string)
})
}