-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapshots_rds.sh
executable file
·83 lines (69 loc) · 2.23 KB
/
snapshots_rds.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
#################################################################################
# Ident : snapshots_rds.sh - 1.0
# Auteur : J.Behuet
#
# Description : Automatisation de la création des snapshot des instance RDS
# indiquées dans le fichier passé en paramètre
#
# Usage : ./snapshot_rds.sh FILE_RDS_IDENTIFIER
# Remarque(s) : Ce script nécessite l'installation des Amazon RDS API Tools
# http://aws.amazon.com/developertools/2928
#
# Versions :
# V | Date | Auteur | Description des modifications
# -----|----------|------------------|------------------------------------------
# 1.0 |25-06-2013| J.Behuet | Initial
#
#
#################################################################################
export JAVA_HOME=/usr/
export AWS_RDS_HOME=/usr/local/rds/
export EC2_REGION=eu-west-1
export PATH=$PATH:$AWS_RDS_HOME/bin
export AWS_ACCESS_KEY=NEED_YOUR_KEY
export AWS_SECRET_KEY=NEED_YOUR_KEY
SCRIPTNAME=`basename $0`
VERSION="1.0"
DESCRIPTION="Automatisation de la création des snapshot des instances RDS indiquées dans le fichier passé en paramètre"
function print_usage() {
echo -e "Usage\t: ./snapshots_rds.sh FILE_RDS_IDENTIFIER"
echo -e "ARGS"
echo -e "\t-h : Print help"
}
function print_help() {
print_version
echo ""
print_usage
echo $DESCRIPTION
}
function print_version() {
echo -e "Ident\t: $SCRIPTNAME version $VERSION"
echo -e "Auteur\t: J.Behuet"
}
while getopts :hv OPT
do
case $OPT in
h)
print_help
exit 0
;;
\?)
echo -e "$SCRIPTNAME : Option incorrecte : $OPTARG"
print_usage
exit 0
;;
esac
done
echo "[INFO] $(date +'%d/%m/%Y %H:%M:%S') -- RDS snapshot [ START ] --"
RDS_LIST=(`cat $1|awk '{ print $1 }'`)
if [ "$RDS_LIST" = "0" ]; then
echo "[ERROR] $(date +'%d/%m/%Y %H:%M:%S') No RDS instances list"
exit 1
fi
for rds in "${RDS_LIST[@]}"; do
echo "[INFO] $(date +'%d/%m/%Y %H:%M:%S') Snapshot $rds";
rds-create-db-snapshot --db-instance-identifier $rds -s "auto-$rds-$(date +'%d%m%Y-%H-%M-%S')" -I $AWS_ACCESS_KEY -S $AWS_SECRET_KEY --region $EC2_REGION
done
echo "[INFO] $(date +'%d/%m/%Y %H:%M:%S') -- RDS snapshot [ END ] --"
exit 0