forked from cloudposse/terraform-aws-rds-db-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixtures.us-east-2.tfvars
48 lines (27 loc) · 1.04 KB
/
fixtures.us-east-2.tfvars
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
region = "us-east-2"
availability_zones = ["us-east-2a", "us-east-2b"]
namespace = "eg"
stage = "test"
name = "rds-proxy"
iam_role_attributes = ["role"]
deletion_protection = false
database_name = "test_db"
database_user = "admin_user"
database_password = "admin_password"
database_port = 5432
multi_az = false
storage_type = "standard"
storage_encrypted = false
allocated_storage = 5
publicly_accessible = false
apply_immediately = true
# https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html
# https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html
# aws rds describe-db-engine-versions --engine postgres --region=us-east-1
# aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine postgres --region=us-east-1
engine = "postgres"
engine_version = "12.8"
db_parameter_group = "postgres12"
# https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
instance_class = "db.t3.small"
engine_family = "POSTGRESQL"