-
Notifications
You must be signed in to change notification settings - Fork 570
/
ec2-elb-upload-ssl-cert.sh
executable file
·116 lines (102 loc) · 3.77 KB
/
ec2-elb-upload-ssl-cert.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env bash
# This script will upload an SSL Certificate to AWS for use in setting up an ELB
# Requires AWS CLI Setup and jq
DEBUGMODE=0
# Functions
# Check required commands
function check_command {
type -P $1 &>/dev/null || fail "Unable to find $1, please install it and run this script again."
}
# Fail
function fail(){
tput setaf 1; echo "Failure: $*" && tput sgr0
exit 1
}
# Pause
function pause(){
read -n 1 -s -p "Press any key to continue..."
echo
}
# Prepare to import the SSL Certificate
function prepare(){
echo "====================================================="
tput setaf 2; echo "This script will import an SSL Certificate to AWS for use in setting up an ELB or CloudFront" && tput sgr0
echo "====================================================="
echo
read -r -p "Enter the desired certificate name or website domain: (ex. domain.com): " DOMAIN
# echo "Go to your SSL certificate issuing service account and see instructions to download certificates."
# echo "Note you may need to seperate the public key from the certificate bundle chain into seperate files."
# read -r -p "Enter the cert expiration date in MMDDYYYY format: (ex. 01162015) " EXPDATE
echo
read -r -p "Enter the path and file name of the public key file: (ex. STAR_domain_com_public.pem) " PUBKEY
if [[ $DEBUGMODE = "1" ]]; then
echo "PUB KEY FILE: $PUBKEY"
fi
PUBKEY=$(eval cat "$PUBKEY")
if [[ $DEBUGMODE = "1" ]]; then
echo "PUB KEY:"
echo "$PUBKEY"
pause
fi
echo
read -r -p "Enter the path and file name of the private key file: (ex. STAR_domain_com.key) " PRIVATE
if [[ $DEBUGMODE = "1" ]]; then
echo "PRIVATE FILE: "$PRIVATE
fi
PRIVATE=$(eval cat $PRIVATE)
if [[ $DEBUGMODE = "1" ]]; then
echo "PRIVATE KEY:"
echo "$PRIVATE"
fi
echo
read -r -p "Enter the path and file name of the certificate chain file: (ex. STAR_domain_com.pem) " CHAIN
if [[ $DEBUGMODE = "1" ]]; then
echo "CHAIN FILE: "$CHAIN
fi
CHAIN=$(eval cat $CHAIN)
if [[ $DEBUGMODE = "1" ]]; then
echo "CHAIN:"
echo "$CHAIN"
fi
echo
}
function import(){
if [ -z "$profile" ]; then
IMPORT=$(aws iam upload-server-certificate --server-certificate-name "$DOMAIN" --certificate-body "$PUBKEY" --private-key "$PRIVATE" --certificate-chain "$CHAIN" 2>&1)
else
IMPORT=$(aws iam upload-server-certificate --profile $profile --server-certificate-name "$DOMAIN" --certificate-body "$PUBKEY" --private-key "$PRIVATE" --certificate-chain "$CHAIN" 2>&1)
fi
# aws iam upload-server-certificate --server-certificate-name "$DOMAIN" --certificate-body file://"$PUBKEY" --private-key file://"$PRIVATE" --certificate-chain file://"$CHAIN"
# aws iam upload-server-certificate --server-certificate-name $DOMAIN-$EXPDATE --certificate-body file://$PUBKEY --private-key file://$PRIVATE --certificate-chain file://$CHAIN
if echo $IMPORT | grep -q error; then
echo "====================================================="
fail "$IMPORT"
else
echo "====================================================="
tput setaf 2; echo "$IMPORT" | jq . && tput sgr0
echo "====================================================="
echo
tput setaf 2; echo "Completed!" && tput sgr0
echo
fi
}
# Verify AWS CLI Credentials are setup
# http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html
if ! grep -q aws_access_key_id ~/.aws/credentials; then
if ! grep -q aws_access_key_id ~/.aws/config; then
fail "AWS config not found or CLI not installed. Please run \"aws configure\"."
fi
fi
# Test for optional variable passed as argument and set as AWS CLI profile name
if ! [ -z "$1" ]; then
profile="$1"
else
echo "Note: You can pass in an AWS CLI profile name as an argument when running the script."
echo "Example: ./ec2-elb-upload-ssl-cert.sh profilename"
pause
echo
fi
check_command "aws"
check_command "jq"
prepare
import