-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
89 lines (70 loc) · 1.31 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 "db_name" {
type = string
}
variable "identifier" {
type = string
}
variable "engine" {
type = string
}
variable "engine_version" {
type = string
}
variable "username" {
type = string
default = "foobar"
}
variable "password" {
type = string
default = "foobarbaz"
}
variable "instance_class" {
type = string
default = "db.m5.large"
}
variable "multi_az" {
type = bool
default = false
}
variable "availability_zone" {
type = string
default = "sa-east-1a"
}
variable "subnet_ids" {
type = list(string)
}
variable "vpc_id" {
type = string
}
variable "security_group_rules" {
type = any
}
variable "storage_type" {
type = string
default = "gp2"
}
variable "allocated_storage" {
type = string
}
variable "max_allocated_storage" {
type = string
}
variable "storage_encrypted" {
type = bool
default = true
}
variable "skip_final_snapshot" {
type = bool
default = true
}
variable "customer_owned_ip_enabled" {
type = bool
default = true
}
variable "publicly_accessible" {
type = bool
default = false
}
variable "tags" {
type = any
}