ec2.ini 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_exclude = us-gov-west-1,cn-north-1
  13. # When generating inventory, Ansible needs to know how to address a server.
  14. # Each EC2 instance has a lot of variables associated with it. Here is the list:
  15. # http://docs.pythonboto.org/en/latest/ref/ec2.html#module-boto.ec2.instance
  16. # Below are 2 variables that are used as the address of a server:
  17. # - destination_variable
  18. # - vpc_destination_variable
  19. # This is the normal destination variable to use. If you are running Ansible
  20. # from outside EC2, then 'public_dns_name' makes the most sense. If you are
  21. # running Ansible from within EC2, then perhaps you want to use the internal
  22. # address, and should set this to 'private_dns_name'.
  23. destination_variable = public_dns_name
  24. # For server inside a VPC, using DNS names may not make sense. When an instance
  25. # has 'subnet_id' set, this variable is used. If the subnet is public, setting
  26. # this to 'ip_address' will return the public IP address. For instances in a
  27. # private subnet, this should be set to 'private_ip_address', and Ansible must
  28. # be run from with EC2.
  29. vpc_destination_variable = ip_address
  30. # To tag instances on EC2 with the resource records that point to them from
  31. # Route53, uncomment and set 'route53' to True.
  32. route53 = False
  33. # Additionally, you can specify the list of zones to exclude looking up in
  34. # 'route53_excluded_zones' as a comma-separated list.
  35. # route53_excluded_zones = samplezone1.com, samplezone2.com
  36. # API calls to EC2 are slow. For this reason, we cache the results of an API
  37. # call. Set this to the path you want cache files to be written to. Two files
  38. # will be written to this directory:
  39. # - ansible-ec2.cache
  40. # - ansible-ec2.index
  41. cache_path = ~/.ansible/tmp
  42. # The number of seconds a cache file is considered valid. After this many
  43. # seconds, a new API call will be made, and the cache file will be updated.
  44. # To disable the cache, set this value to 0
  45. cache_max_age = 300
  46. # These two settings allow flexible ansible host naming based on a format
  47. # string and a comma-separated list of ec2 tags. The tags used must be
  48. # present for all instances, or the code will fail. This overrides both
  49. # destination_variable and vpc_destination_variable.
  50. # destination_format = {0}.{1}.rhcloud.com
  51. # destination_format_tags = Name,environment