Open viviant100 opened 2 weeks ago
RDS (specifically postgres) terraform module was provided via https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/rds_cluster.html with example below:
resource
"aws_rds_cluster" "postgresql\" {
cluster_identifier = "aurora-cluster-demo" engine = "aurora-postgresql" availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"] database_name = "mydb" master_username = "foo" master_password = "must_be_eight_characters" backup_retention_period = 5 preferred_backup_window = "07:00-09:00" }`