0
0

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 5 years have passed since last update.

AWS 非対応のEC2インスタンスタイプに無理やりAutorecovery設定してみる

Last updated at Posted at 2018-04-06

この検証の内容について

Autorecovery非対応のインスタンスタイプで Autorecovery っぽい自動復帰を実現するという建設的な内容ではありませんのでご注意ください。

AWSが提供する --alarm-actions ec2:recover を、上記ページで謳っている対応インスタンス以外に設定したらどうなるのかというあまり実りのない検証です。

検証内容

i3タイプのインスタンス立てて以下AWS CLI投げ込んでみました。

aws cloudwatch put-metric-alarm \
 --alarm-name ec2_auto-recovery_i-0473259c7788121c9
 --alarm-description "EC2 Auto Recovery" \
 --metric-name StatusCheckFailed \
 --namespace AWS/EC2 \
 --statistic Maximum \
 --period 300 \
 --threshold 1 \
 --comparison-operator GreaterThanOrEqualToThreshold \
 --dimensions  Name=InstanceId,Value=i-0473259c7788121c9 \
 --evaluation-periods 1 \
 --alarm-actions arn:aws:automate:ap-northeast-1:ec2:recover

結果

ふつーに投入出来てしまいました。残念ながらCloudwatch側では設定時にvalidateしていないようです。

2018-04-06_10h35_35.png
※Statusが terminatedですが、これは検証完了直後にチキって削除し、その後にキャプチャした為です。CLoudwatch設定投入はStatus Runningのタイミングで検証しています。

2018-04-06_10h38_20.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?