ec2.ini 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Ansible EC2 external inventory script settings
  2. #
  3. [ec2]
  4. # to talk to a private eucalyptus instance uncomment these lines
  5. # and edit edit eucalyptus_host to be the host name of your cloud controller
  6. #eucalyptus = True
  7. #eucalyptus_host = clc.cloud.domain.org
  8. # AWS regions to make calls to. Set this to 'all' to make request to all regions
  9. # in AWS and merge the results together. Alternatively, set this to a comma
  10. # separated list of regions. E.g. 'us-east-1,us-west-1,us-west-2'
  11. #regions = all
  12. regions = us-east-1
  13. regions_exclude = us-gov-west-1,cn-north-1
  14. # When generating inventory, Ansible needs to know how to address a server.
  15. # Each EC2 instance has a lot of variables associated with it. Here is the list:
  16. # http://docs.pythonboto.org/en/latest/ref/ec2.html#module-boto.ec2.instance
  17. # Below are 2 variables that are used as the address of a server:
  18. # - destination_variable
  19. # - vpc_destination_variable
  20. # This is the normal destination variable to use. If you are running Ansible
  21. # from outside EC2, then 'public_dns_name' makes the most sense. If you are
  22. # running Ansible from within EC2, then perhaps you want to use the internal
  23. # address, and should set this to 'private_dns_name'.
  24. destination_variable = public_dns_name
  25. # For server inside a VPC, using DNS names may not make sense. When an instance
  26. # has 'subnet_id' set, this variable is used. If the subnet is public, setting
  27. # this to 'ip_address' will return the public IP address. For instances in a
  28. # private subnet, this should be set to 'private_ip_address', and Ansible must
  29. # be run from with EC2.
  30. vpc_destination_variable = ip_address
  31. # To tag instances on EC2 with the resource records that point to them from
  32. # Route53, uncomment and set 'route53' to True.
  33. route53 = False
  34. # Additionally, you can specify the list of zones to exclude looking up in
  35. # 'route53_excluded_zones' as a comma-separated list.
  36. # route53_excluded_zones = samplezone1.com, samplezone2.com
  37. # API calls to EC2 are slow. For this reason, we cache the results of an API
  38. # call. Set this to the path you want cache files to be written to. Two files
  39. # will be written to this directory:
  40. # - ansible-ec2.cache
  41. # - ansible-ec2.index
  42. cache_path = ~/.ansible/tmp
  43. # The number of seconds a cache file is considered valid. After this many
  44. # seconds, a new API call will be made, and the cache file will be updated.
  45. # To disable the cache, set this value to 0
  46. cache_max_age = 300