Skip to main content

AWS RDS operations

v0.1.2

RDS instance + cluster inventory, parameter groups, snapshots, plus narrow operator actions (reboot, create-snapshot). Auth via AWS_PROFILE. Does NOT include delete-instance/delete-cluster.

6 allowed by default 2 need approval by default
Pack ID
aws-rds
Vendor
emisar
OS
linux
Actions
8
Required binaries. Install these on the host before relying on the pack — an action that calls a missing one fails at run time.
aws

Install

emisar pack install fetches this pack, re-validates it, and verifies its content hash against the --hash below — the exact bytes this page was rendered against, so a tampered copy is rejected — before copying it into the runner's packs dir. The command reloads a running daemon itself; no manual restart.

on the runner host
sudo emisar pack install aws-rds --hash sha256:319a4ad087d9eeba19c8c09902f8fb2e92bca4ab8f5b3022ec71bd07a21df663

Actions 8 total

View on GitHub
  • rds.create_snapshot exec high

    aws rds create-db-snapshot

    Triggers a manual snapshot of one instance. Stored in your account; outlives instance deletion.

    View source on GitHub
  • rds.describe_cluster exec low

    aws rds describe-db-clusters --db-cluster-identifier

    Show one Aurora cluster's full details + members.

    View source on GitHub
  • rds.describe_instance exec low

    aws rds describe-db-instances --db-instance-identifier

    Show full details for one RDS instance.

    View source on GitHub
  • rds.list_clusters exec low

    aws rds describe-db-clusters

    List all Aurora clusters.

    View source on GitHub
  • rds.list_instances exec low

    aws rds describe-db-instances

    List all RDS instances with class, engine, status.

    View source on GitHub
  • rds.list_snapshots exec low

    aws rds describe-db-snapshots

    List all DB snapshots.

    View source on GitHub
  • rds.parameter_groups exec low

    aws rds describe-db-parameter-groups

    List all DB parameter groups.

    View source on GitHub
  • rds.reboot_instance exec high

    aws rds reboot-db-instance

    Reboots one RDS instance. Brief downtime.

    View source on GitHub