Skip to content

Instantly share code, notes, and snippets.

@kevinkarwaski
Created June 4, 2011 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinkarwaski/1007405 to your computer and use it in GitHub Desktop.
Save kevinkarwaski/1007405 to your computer and use it in GitHub Desktop.
BotoConfig Example
# ---------------------------------------------
#
# 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