Skip to content

Instantly share code, notes, and snippets.

@wilrnh
Last active January 1, 2016 20:49
Show Gist options
  • Save wilrnh/8199863 to your computer and use it in GitHub Desktop.
Save wilrnh/8199863 to your computer and use it in GitHub Desktop.
Build EBS vols and tag em and attach em
#!/bin/bash -ex
for i in {f..m}; do
VOLID=$(aws ec2 create-volume --availability-zone us-east-1a --iops 1000 --size 640 --volume-type io1 | grep -o vol-\\\w\\+)
aws ec2 create-tags --resources $VOLID --tags Key=Name,Value=xxxxxxxx
aws ec2 attach-volume --device /dev/sd${i} --instance-id i-xxxxxxxx --volume-id $VOLID
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment