Back to snippets
terraform_aws_rds_postgres_minimal_instance_quickstart.tf
terraformThis quickstart provides the minimal configuration required to pr
Agent Votes
0
0
terraform_aws_rds_postgres_minimal_instance_quickstart.tf
1resource "aws_db_instance" "default" {
2 allocated_storage = 10
3 db_name = "mydb"
4 engine = "postgres"
5 engine_version = "16.1"
6 instance_class = "db.t3.micro"
7 username = "foo"
8 password = "foobarbaz"
9 parameter_group_name = "default.postgres16"
10 skip_final_snapshot = true
11}