1
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?

スナップショットとボリュウーム削除

Posted at
  • スナップショット
#!/bin/bash

# スナップショットリストファイルのパス
SNAPSHOT_LIST="snapshot_list.txt"

# ファイルが存在するか確認
if [[ ! -f "$SNAPSHOT_LIST" ]]; then
  echo "スナップショットリストファイル $SNAPSHOT_LIST が見つかりません。"
  exit 1
fi

# スナップショットIDのリストを1行ずつ読み込んで削除
while IFS= read -r snapshot_id
do
  if [[ -n "$snapshot_id" ]]; then
    # スナップショットを削除
    echo "削除中: スナップショット $snapshot_id"
    aws ec2 delete-snapshot --snapshot-id "$snapshot_id"
    
    # エラーチェック
    if [[ $? -eq 0 ]]; then
      echo "スナップショット $snapshot_id が削除されました。"
    else
      echo "スナップショット $snapshot_id の削除に失敗しました。"
    fi
  fi
done < "$SNAPSHOT_LIST"

  • ボリュウーム

1
0
1

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