Created
June 4, 2011 00:38
-
-
Save kevinkarwaski/1007405 to your computer and use it in GitHub Desktop.
BotoConfig Example
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
# --------------------------------------------- | |
# | |
# Example boto config file. | |
# Per user = ~/.boto | |
# Global = /etc/boto.cfg | |
# | |
# See also: | |
# http://code.google.com/p/boto/wiki/BotoConfig | |
# http://boto.cloudhackers.com | |
# --------------------------------------------- | |
[Credentials] | |
aws_access_key_id = <your access key> | |
aws_secret_access_key = <your secret key> | |
[Boto] | |
debug = 0 | |
num_retries = 10 | |
proxy = myproxy.com | |
proxy_port = 8080 | |
proxy_user = foo | |
proxy_pass = bar | |
# --------------------------------------------- | |
# | |
# EC2/ELB/AutoScale Regions: | |
# | |
# us-east-1 (default), us-west-1, eu-west-1, ap-northeast-1, ap-southeast-1 | |
# | |
# --------------------------------------------- | |
ec2_region_name = <region> | |
ec2_region_endpoint = <region>.ec2.amazonaws.com | |
elb_endpoint = <region>.elasticloadbalancing.amazonaws.com | |
autoscale_endpoint = autoscaling.<region>.amazonaws.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment