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
#!/usr/bin/python | |
from os import environ | |
from socket import gethostname | |
from boto import connect_route53 | |
from boto.route53.record import ResourceRecordSets | |
IF_NAME = 'ppp0' | |
AWS_ACCESS_KEY = '...' | |
AWS_SECRET_KEY = '...' |