rds
RDS
DatabasesAWS
General
General information about the service.
Chat
Powered by AITalk to this service to learn more about it.
Suggested questions:
Naming
The conventions, rules, and restrictions for naming this service.
Naming Convention
rds-Length
1-63
Valid Characters
Letters, numbers, hyphens
Scope
region
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "aws_db_instance" "main" {2 identifier = "rds-${var.environment}"3 allocated_storage = 204 engine = "postgres"5 engine_version = "15"6 instance_class = "db.t3.micro"7 db_name = var.db_name8 username = var.db_username9 password = var.db_password10 skip_final_snapshot = true11}
Utilities
Utilities to support app deployment or configuration.