Skip to content

Instantly share code, notes, and snippets.

@joonathan
Forked from harperreed/create_custom_origin.py
Created January 15, 2011 14:49
Show Gist options
  • Select an option

  • Save joonathan/780952 to your computer and use it in GitHub Desktop.

Select an option

Save joonathan/780952 to your computer and use it in GitHub Desktop.
import boto
# requires cf_customorigin branch
# https://github.com/boto/boto/tree/cf_customorigin
origin_domain = 'www.example.org'
cdn_cname = ['media.example.org']
caller_reference = 'exmaple Distribution'
c = boto.connect_cloudfront()
d = c.create_custom_distribution(
dns_name=origin_domain,
enabled=True,
caller_reference=caller_reference,
cnames=cdn_cname
)
print 'cname '+ cdn_cname + ' to ' d.domain_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment