Created
January 25, 2012 17:19
-
-
Save dfox/1677405 to your computer and use it in GitHub Desktop.
A script to update DNS on Route 53
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/sh | |
# Make sure only root can run our script | |
if [ "$(id -u)" != "0" ]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
# Load configuration | |
. /etc/route53/config | |
# Export access key ID and secret for cli53 | |
export AWS_ACCESS_KEY_ID | |
export AWS_SECRET_ACCESS_KEY | |
# Use command line scripts to get instance ID and public hostname | |
INSTANCE_ID=$(ec2metadata | grep 'instance-id:' | cut -d ' ' -f 2) | |
PUBLIC_HOSTNAME=$(ec2metadata | grep 'public-hostname:' | cut -d ' ' -f 2) | |
# Create a new CNAME record on Route 53, replacing the old entry if nessesary | |
cli53 rrcreate "$ZONE" "$INSTANCE_ID" CNAME "$PUBLIC_HOSTNAME" --replace --ttl "$TTL" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment