-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathvariables.tf
89 lines (71 loc) · 1.76 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
variable "boundary_release" {
default = "0.1.0"
description = "The version of Boundary to install"
type = string
}
variable "bucket_name" {
description = <<EOF
The name of the bucket to upload the contents of the
cloud-init-output.log file
EOF
type = string
}
variable "desired_capacity" {
default = 3
description = <<EOF
The desired capacity is the initial capacity of the Auto Scaling group
at the time of its creation and the capacity it attempts to maintain.
EOF
type = number
}
variable "image_id" {
description = <<EOF
The ID of the Amazon Machine Image (AMI) that was assigned during registration
EOF
type = string
}
variable "instance_type" {
default = "t3.small"
description = "Specifies the instance type of the EC2 instance"
type = string
}
variable "key_name" {
default = ""
description = "The name of the key pair"
type = string
}
variable "max_size" {
default = 3
description = "The maximum size of the group"
type = number
}
variable "min_size" {
default = 3
description = "The minimum size of the group"
type = number
}
variable "engine_version" {
default = "12.10"
description = "The engine_version of the postgres db, within the postgres12 family"
type = string
}
variable "private_subnets" {
description = "List of private subnet ids"
type = list(string)
}
variable "public_subnets" {
description = "List of public subnet ids"
type = list(string)
}
variable "tags" {
default = {}
description = <<EOF
One or more tags. You can tag your Auto Scaling group and propagate the tags to
the Amazon EC2 instances it launches.
EOF
type = map(string)
}
variable "vpc_id" {
description = "The ID of the VPC"
type = string
}