-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathwindows-vm-variables.tf
45 lines (38 loc) · 1.28 KB
/
windows-vm-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
########################################
## Virtual Machine Module - Variables ##
########################################
variable "windows_instance_type" {
type = string
description = "EC2 instance type for Windows Server"
default = "t2.micro"
}
variable "windows_associate_public_ip_address" {
type = bool
description = "Associate a public IP address to the EC2 instance"
default = true
}
variable "windows_root_volume_size" {
type = number
description = "Volumen size of root volumen of Windows Server"
default = "30"
}
variable "windows_data_volume_size" {
type = number
description = "Volumen size of data volumen of Windows Server"
default = "10"
}
variable "windows_root_volume_type" {
type = string
description = "Volumen type of root volumen of Windows Server. Can be standard, gp3, gp2, io1, sc1 or st1"
default = "gp2"
}
variable "windows_data_volume_type" {
type = string
description = "Volumen type of data volumen of Windows Server. Can be standard, gp3, gp2, io1, sc1 or st1"
default = "gp2"
}
variable "windows_instance_name" {
type = string
description = "EC2 instance name for Windows Server"
default = "tfwinsrv01"
}