-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
121 lines (97 loc) · 2.38 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
variable "access_key" {
type = string
}
variable "secret_key" {
type = string
}
variable "region" {
type = string
}
variable "personal_account_id" {
type = list(string)
description = "List of personal account IDs to deny terraform create"
}
variable "public_key_path" {
type = string
description = "Path to the public key to create the key pair"
}
variable "instance_type" {
type = string
description = "Type of EC2 instance to provision"
default = "t2.micro"
}
variable "name" {
type = string
}
variable "common_tags" {
description = "Common tags to the resources"
type = map(string)
}
variable "rds_cluster_name" {
type = string
description = "Name of the RDS cluster"
}
variable "rds_username" {
type = string
description = "Username to connect to RDS"
}
variable "rds_cluster_version" {
type = string
description = "Postgre version to use"
}
variable "rds_storage_encrypted" {
type = bool
description = "Encrypt RDS storage"
}
variable "rds_skip_final_snapshot" {
type = string
description = "Skip RDS final snapshot"
}
variable "rds_deletion_protection" {
type = bool
description = "Enable RDS deletion protection"
}
variable "rds_port" {
type = number
description = "RDS port"
}
variable "rds_backup_retention_period" {
type = number
description = "RDS backup retention period"
}
variable "rds_instance_name" {
type = string
description = ""
}
variable "rds_instance_type" {
type = string
description = "RDS instance type"
}
variable "rds_instance_performance_insights" {
type = bool
description = "RDS instance performance insights"
}
variable "rds_instance_monitoring_interval" {
type = string
description = "RDS instance monitoring interval, if > 0 enhanced monitoring enabled"
}
variable "rds_instance_minor_version" {
type = bool
description = "RDS instance minor version"
}
variable "rds_database_name" {
type = string
description = "RDS database name"
}
variable "rds_cluster_engine" {
type = string
description = "RDS cluster engine"
}
variable "rds_cluster_maintenance_window" {
type = string
description = "RDS maintenance window"
}
variable "rds_instance_insights_retention_period" {
type = number
description = "RDS instance insights retention period"
}