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?

More than 3 years have passed since last update.

バッチ処理でEBSのスナップショットを取得する方法

Posted at

#事前準備
①volumeList.txt(EBSボリュームIDを格納する)
②createSS.sh (EBSのスナップショットを自動取得実行ファイル)
⇒ファイルの中身:

#!/bin/bash
cat volumeList.txt | while read VOLUME_ID || [ -n "${VOLUME_ID}" ]; do
    aws ec2 create-snapshot --volume-id $VOLUME_ID --description $VOLUME_ID
done

*2つのファイルは同一ディレクトリに格納する必要があります。

#EBSのスナップショットを取得する
今回はこの3つのEBSのスナップショットを一括で取得したいです。
INKED6~2.JPG

###STEP1
EBSのボリュームIDを「volumeList.txt」に記入します。
Inked68747470733a2f2f71696974612d696d6167652d73746f72652e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f302f3435373839312f66393538663335622d386338652d666238352d373466632d38623931343134663864_LI.jpg

###STEP2
「createSS.sh」を実行します。

Jenny:/Desktop/Snapshot作成バッチ$ ls -l
-rwxrwxrwx 1 song song 179 May 24 23:31 createSS.sh
-rwxrwxrwx 1 song song   0 Jul  7 14:31 volumeList.txt
Jenny:/Desktop/Snapshot作成バッチ$ ./createSS.sh

###STEP3
結果を確認します。
スナップショットを作成しましたね~~~~
Inked68747470733a2f2f71696974612d696d6167652d73746f72652e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f302f3435373839312f36363761393662652d383332332d393638622d306262342d61306361316562393339_LI.jpg

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