rds

RDS

DatabasesAWS
General

General information about the service.

Description

Amazon Relational Database Service makes it easy to set up, operate, and scale relational databases in the cloud.

Service Namespace

AWS::RDS::DBInstance

ARN Pattern

arn:aws:rds:{region}:{account}:db:{db-instance-id}

References

Chat

Powered by AI

Talk 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 DocumentationTerraform
terraform
1resource "aws_db_instance" "main" {
2 identifier = "rds-${var.environment}"
3 allocated_storage = 20
4 engine = "postgres"
5 engine_version = "15"
6 instance_class = "db.t3.micro"
7 db_name = var.db_name
8 username = var.db_username
9 password = var.db_password
10 skip_final_snapshot = true
11}
Utilities

Utilities to support app deployment or configuration.