-
-
Save joonathan/780952 to your computer and use it in GitHub Desktop.
Revisions
-
harperreed revised this gist
Jan 14, 2011 . 1 changed file with 9 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ import datetime from boto.cloudfront import CloudFrontConnection AWS_CF_DISTRIBUTION_ID = 'LKJHSADLIUYWE(*&QW(E*' files = ['/css/style.css','/filename/otherfile.name' ] conn = CloudFrontConnection() print conn.create_invalidation_request(AWS_CF_DISTRIBUTION_ID, files) -
harperreed created this gist
Jan 14, 2011 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ 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