コマンドでRDSをstart stopしてみた
RDSに「停止」が追加となった。
http://dev.classmethod.jp/cloud/aws/start-stop-db-instance-for-rds/
コマンドラインを確認したところコマンドが追加されていたので早速実行してみた。
start
aws rds rds start-db-instance --db-instance-identifier ${id}
stop
スナップショットを取得してから停止
http://docs.aws.amazon.com/cli/latest/reference/rds/stop-db-instance.html
aws rds stop-db-instance \
--db-instance-identifier ${id} \
--db-snapshot-identifier ${snapshotId}
CopyTagsToSnapshotがtrueなのにsnapshotにタグが付かないので付与
snapshotARN="arn:aws:rds:ap-northeast-1:${AWSID}:snapshot:${snapshotId}"
aws rds add-tags-to-resource \
--resource-name ${snapshotARN} \
--tags "Key=k,Value=v"