ec2.ini 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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'. The key of an EC2 tag
  23. # may optionally be used; however the boto instance variables hold precedence
  24. # in the event of a collision.
  25. destination_variable = public_dns_name
  26. # For server inside a VPC, using DNS names may not make sense. When an instance
  27. # has 'subnet_id' set, this variable is used. If the subnet is public, setting
  28. # this to 'ip_address' will return the public IP address. For instances in a
  29. # private subnet, this should be set to 'private_ip_address', and Ansible must
  30. # be run from within EC2. The key of an EC2 tag may optionally be used; however
  31. # the boto instance variables hold precedence in the event of a collision.
  32. # WARNING: - instances that are in the private vpc, _without_ public ip address
  33. # will not be listed in the inventory until You set:
  34. # vpc_destination_variable = 'private_ip_address'
  35. vpc_destination_variable = ip_address
  36. # To tag instances on EC2 with the resource records that point to them from
  37. # Route53, uncomment and set 'route53' to True.
  38. route53 = False
  39. # To exclude RDS instances from the inventory, uncomment and set to False.
  40. rds = False
  41. # To exclude ElastiCache instances from the inventory, uncomment and set to False.
  42. elasticache = False
  43. # Additionally, you can specify the list of zones to exclude looking up in
  44. # 'route53_excluded_zones' as a comma-separated list.
  45. # route53_excluded_zones = samplezone1.com, samplezone2.com
  46. # By default, only EC2 instances in the 'running' state are returned. Set
  47. # 'all_instances' to True to return all instances regardless of state.
  48. all_instances = False
  49. # By default, only EC2 instances in the 'running' state are returned. Specify
  50. # EC2 instance states to return as a comma-separated list. This
  51. # option is overridden when 'all_instances' is True.
  52. # instance_states = pending, running, shutting-down, terminated, stopping, stopped
  53. # By default, only RDS instances in the 'available' state are returned. Set
  54. # 'all_rds_instances' to True return all RDS instances regardless of state.
  55. all_rds_instances = False
  56. # By default, only ElastiCache clusters and nodes in the 'available' state
  57. # are returned. Set 'all_elasticache_clusters' and/or 'all_elastic_nodes'
  58. # to True return all ElastiCache clusters and nodes, regardless of state.
  59. #
  60. # Note that all_elasticache_nodes only applies to listed clusters. That means
  61. # if you set all_elastic_clusters to false, no node will be return from
  62. # unavailable clusters, regardless of the state and to what you set for
  63. # all_elasticache_nodes.
  64. all_elasticache_replication_groups = False
  65. all_elasticache_clusters = False
  66. all_elasticache_nodes = False
  67. # API calls to EC2 are slow. For this reason, we cache the results of an API
  68. # call. Set this to the path you want cache files to be written to. Two files
  69. # will be written to this directory:
  70. # - ansible-ec2.cache
  71. # - ansible-ec2.index
  72. cache_path = ~/.ansible/tmp
  73. # The number of seconds a cache file is considered valid. After this many
  74. # seconds, a new API call will be made, and the cache file will be updated.
  75. # To disable the cache, set this value to 0
  76. cache_max_age = 300
  77. # These two settings allow flexible ansible host naming based on a format
  78. # string and a comma-separated list of ec2 tags. The tags used must be
  79. # present for all instances, or the code will fail. This overrides both
  80. # destination_variable and vpc_destination_variable.
  81. # destination_format = {0}.{1}.rhcloud.com
  82. # destination_format_tags = Name,environment
  83. # Organize groups into a nested/hierarchy instead of a flat namespace.
  84. nested_groups = False
  85. # Replace - tags when creating groups to avoid issues with ansible
  86. replace_dash_in_groups = False
  87. # The EC2 inventory output can become very large. To manage its size,
  88. # configure which groups should be created.
  89. group_by_instance_id = True
  90. group_by_region = True
  91. group_by_availability_zone = True
  92. group_by_ami_id = True
  93. group_by_instance_type = True
  94. group_by_key_pair = True
  95. group_by_vpc_id = True
  96. group_by_security_group = True
  97. group_by_tag_keys = True
  98. group_by_tag_none = True
  99. group_by_route53_names = True
  100. group_by_rds_engine = True
  101. group_by_rds_parameter_group = True
  102. group_by_elasticache_engine = True
  103. group_by_elasticache_cluster = True
  104. group_by_elasticache_parameter_group = True
  105. group_by_elasticache_replication_group = True
  106. # If you only want to include hosts that match a certain regular expression
  107. # pattern_include = staging-*
  108. # If you want to exclude any hosts that match a certain regular expression
  109. # pattern_exclude = staging-*
  110. # Instance filters can be used to control which instances are retrieved for
  111. # inventory. For the full list of possible filters, please read the EC2 API
  112. # docs: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeInstances.html#query-DescribeInstances-filters
  113. # Filters are key/value pairs separated by '=', to list multiple filters use
  114. # a list separated by commas. See examples below.
  115. # Retrieve only instances with (key=value) env=staging tag
  116. # instance_filters = tag:env=staging
  117. # Retrieve only instances with role=webservers OR role=dbservers tag
  118. # instance_filters = tag:role=webservers,tag:role=dbservers
  119. # Retrieve only t1.micro instances OR instances with tag env=staging
  120. # instance_filters = instance-type=t1.micro,tag:env=staging
  121. # You can use wildcards in filter values also. Below will list instances which
  122. # tag Name value matches webservers1*
  123. # (ex. webservers15, webservers1a, webservers123 etc)
  124. # instance_filters = tag:Name=webservers1*
  125. # A boto configuration profile may be used to separate out credentials
  126. # see http://boto.readthedocs.org/en/latest/boto_config_tut.html
  127. # boto_profile = some-boto-profile-name