-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinux-vm-variables.tf
37 lines (31 loc) · 1.02 KB
/
linux-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
########################################
## Virtual Machine Module - Variables ##
########################################
variable "ec2_count" {
type = number
description = "Number of EC2 instances to create"
default = 2
}
variable "linux_instance_type" {
type = string
description = "EC2 instance type for Linux Server"
default = "t2.micro"
}
variable "linux_root_volume_size" {
type = number
description = "Volumen size of root volumen of Linux Server"
}
variable "linux_data_volume_size" {
type = number
description = "Volumen size of data volumen of Linux Server"
}
variable "linux_root_volume_type" {
type = string
description = "Volumen type of root volumen of Linux Server. Can be standard, gp3, gp2, io1, sc1 or st1"
default = "gp2"
}
variable "linux_data_volume_type" {
type = string
description = "Volumen type of data volumen of Linux Server. Can be standard, gp3, gp2, io1, sc1 or st1"
default = "gp2"
}