-
Notifications
You must be signed in to change notification settings - Fork 9
/
variables.tf
115 lines (99 loc) · 2.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
##### Global Variable #####
#### Tags ####
variable "owner" {
type = "string"
description = "The name of the infra provisioner or owner"
default = "Prem"
}
variable "environment" {
type = "string"
description = "The environment name"
}
variable "cost_center" {
type = "string"
description = "The cost_center name for this project"
default = "personal budget"
}
variable "app_name" {
type = "string"
description = "Application name of project"
default = "rd"
}
variable "location" {
type = "string"
description = "The Location for Infra centre"
default = "West Europe"
}
### Network ###
variable "vnet_name" {
type = "string"
description = "The core network environment vnet name"
}
variable "vnet_rg_name" {
type = "string"
description = "The core network vnet resource group name"
}
variable "subnet_name" {
type = "string"
description = "The cluster network subnet resource name"
}
variable "ipconf_name" {
type = "string"
description = "The nic name for the compute resource"
}
### Host Pool ###
variable "host_pool_type" {
type = string
default = "Pooled"
}
variable "host_pool_load_balancer_type" {
type = string
default = "BreadthFirst"
}
variable "host_pool_validate_environment" {
type = bool
default = false
}
variable "host_pool_max_sessions_allowed" {
type = number
default = 999999
}
### Desktop App group ###
variable "desktop_app_group_type" {
type = string
default = "Desktop"
}
### Share Image Gallery ###
variable "sig_image_name" {
type = string
description = "Image definition name"
}
variable "os_type" {
type = string
description = "Type of OS"
}
variable "publisher" {
type = string
description = "Name of the OS publisher"
}
variable "offer" {
type = string
description = "The Offer Name for the Image"
}
variable "sku" {
type = string
description = "The Name of the SKU for the Image."
}
### VM Details ###
variable "os_type" {
type = "string"
description = "The size of the vm"
}
variable "username" {
type = "string"
description = "The root user name for the compute resource"
}
variable "password" {
type = "string"
description = "The root password for the compute resource"
}