-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathvariables.tf
95 lines (80 loc) · 2.17 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
variable "boundary_release" {
default = "0.12.0"
description = "The version of Boundary to install"
type = string
}
variable "cidr_block" {
default = "10.0.0.0/16"
description = "The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16."
type = string
}
variable "controller_desired_capacity" {
default = 3
description = "The capacity the controller Auto Scaling group attempts to maintain"
type = number
}
variable "controller_instance_type" {
default = "t3.small"
description = "Specifies the instance type of the controller EC2 instance"
type = string
}
variable "controller_max_size" {
default = 3
description = "The maximum size of the controller group"
type = number
}
variable "controller_min_size" {
default = 3
description = "The minimum size of the controller group"
type = number
}
variable "engine_version" {
default = "12.10"
description = "The engine_version of the postgres db, within the postgres12 family"
type = string
}
variable "key_name" {
default = ""
description = "The name of the key pair"
type = string
}
variable "private_subnets" {
default = []
description = "List of private subnets"
type = list(string)
}
variable "public_subnets" {
default = []
description = "List of public subnets"
type = list(string)
}
variable "tags" {
default = {}
description = "One or more tags"
type = map(string)
}
variable "vpc_id" {
default = ""
description = "The ID of the VPC"
type = string
}
variable "worker_desired_capacity" {
default = 3
description = "The capacity the worker Auto Scaling group attempts to maintain"
type = number
}
variable "worker_instance_type" {
default = "t3.small"
description = "Specifies the instance type of the worker EC2 instance"
type = string
}
variable "worker_max_size" {
default = 3
description = "The maximum size of the worker group"
type = number
}
variable "worker_min_size" {
default = 3
description = "The minimum size of the worker group"
type = number
}