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

[JAWS-UG CLI] ACM入門 #13 ACM証明書の削除

Posted at

これはAWS Certificate Manager (ACM)入門ハンズオン資料の一部です。
最初から続けて行っている場合「0.準備」の各項は作業不要です。第1項へ進んでください

  1. 準備
    =======

0.1. ACM証明書arnの変数への格納

証明書のarnを変数 CERT_ARN へ格納します。

コマンド(例)
CERT_ARN=`aws acm list-certificates --region us-east-1 \
 --query CertificateSummaryList[].CertificateArn \
 --output text` && echo ${CERT_ARN}
結果
      arn:aws:acm:us-east-1:777777777777:certificate/9eb6865a-63a3-48df-92c2-ae113c877b33
  1. ACM証明書の削除
    =================

1.1. 証明書の削除

コマンド
aws acm delete-certificate --region us-east-1 --certificate-arn ${CERT_ARN}
結果
      返り値なし

ここで An error occurred (ResourceInUseException)のようなエラーが出た場合は、何らかのサービスでまだこの証明書が使用されています。
利用中のACM証明書は削除することができません。
CloudFrontやELBなどを確認して先に削除してから再実行してください。

1.2. 削除されたか確認

コマンド
aws acm list-certificates --region us-east-1
結果
      {
          "CertificateSummaryList": []
      }
0
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
0
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?