1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Cloudwatch eventでRDSを止める

Posted at
1 / 8

##定時が来たらRDSをまとめて落としたい

開発環境とか開発中のRDSとか、使わないときは止めておきたい。「とにかく金使うな」という空気感を読んで
ちょっとハマったのでメモ。


Cloudwatch eventを開いてcronを設定する

時間が来たら止めたいので、スケジュールからcron式で設定してあげる。

image.png


止めたいRDSを指定する

SSM AutomationでRDSを止めてあげる。
定数に止めたいRDSのインスタンス識別子を入力する。

image.png


ここでハマった

RDSのinstanceidは複数指定できない
EC2はできるのに…。
image.png

[AWS-StopRDSInstanceのリファレンス]
(https://docs.aws.amazon.com/ja_jp/systems-manager/latest/userguide/automation-aws-stoprdsinstance.html)
instanceidの型が文字列になってる...。
image.png

AWS-StopEC2Instanceのリファレンス
EC2はstringlistなのに...。
image.png


名前決めて説明入れる

ここはお好きに。
入れたら「ルールの作成」

image.png


完成

image.png


まとまらないまとめ

  1. 複数RDSを落としたいときは、いちいちルール作んなきゃだめなのか…?
    それカッコ悪くない…?

  2. リファレンスは大事

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?