-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvars_infra.tf
42 lines (34 loc) · 945 Bytes
/
vars_infra.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
# This file contains various variables that affect the configuration of the deployed infrastructure
#
variable "vpc_cidr" {
description = "Primary CIDR block for VPC"
default = "172.20.0.0/16"
}
variable "base_ip" {
description = "Base IP of deployed instances"
default = "172.20.1.1"
}
variable "flavour_centos" {
description = "AWS instance type for servers etc"
default = "t2.medium"
}
variable "flavour_kali" {
description = "AWS instance type for servers etc"
default = "t2.medium"
}
variable "flavour_avi" {
description = "AWS instance type for Avi controllers"
default = "c4.2xlarge"
}
variable "vol_size_centos" {
description = "Volume size for instances in G"
default = "15"
}
variable "vol_size_kali" {
description = "Volume size for instances in G"
default = "25"
}
variable "vol_size_avi" {
description = "Volume size for Avi controllers in G"
default = "64"
}