This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PATH=$PATH:/usr/local/bin/:/usr/bin | |
# Safety feature: exit script if error is returned, or if variables not set. | |
# Exit if a pipeline results in an error. | |
set -ue | |
set -o pipefail | |
## Automatic EBS Volume Snapshot Creation & Clean-Up Script |