ec2.ini 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. # This allows you to override the inventory_name with an ec2 variable, instead
  27. # of using the destination_variable above. Addressing (aka ansible_ssh_host)
  28. # will still use destination_variable. Tags should be written as 'tag_TAGNAME'.
  29. hostname_variable = tag_Name
  30. # For server inside a VPC, using DNS names may not make sense. When an instance
  31. # has 'subnet_id' set, this variable is used. If the subnet is public, setting
  32. # this to 'ip_address' will return the public IP address. For instances in a
  33. # private subnet, this should be set to 'private_ip_address', and Ansible must
  34. # be run from within EC2. The key of an EC2 tag may optionally be used; however
  35. # the boto instance variables hold precedence in the event of a collision.
  36. # WARNING: - instances that are in the private vpc, _without_ public ip address
  37. # will not be listed in the inventory until You set:
  38. # vpc_destination_variable = private_ip_address
  39. vpc_destination_variable = ip_address
  40. # The following two settings allow flexible ansible host naming based on a
  41. # python format string and a comma-separated list of ec2 tags. Note that:
  42. #
  43. # 1) If the tags referenced are not present for some instances, empty strings
  44. # will be substituted in the format string.
  45. # 2) This overrides both destination_variable and vpc_destination_variable.
  46. #
  47. #destination_format = {0}.{1}.example.com
  48. #destination_format_tags = Name,environment
  49. # To tag instances on EC2 with the resource records that point to them from
  50. # Route53, uncomment and set 'route53' to True.
  51. route53 = False
  52. # To exclude RDS instances from the inventory, uncomment and set to False.
  53. rds = False
  54. # To exclude ElastiCache instances from the inventory, uncomment and set to False.
  55. elasticache = False
  56. # Additionally, you can specify the list of zones to exclude looking up in
  57. # 'route53_excluded_zones' as a comma-separated list.
  58. # route53_excluded_zones = samplezone1.com, samplezone2.com
  59. # By default, only EC2 instances in the 'running' state are returned. Set
  60. # 'all_instances' to True to return all instances regardless of state.
  61. all_instances = False
  62. # By default, only EC2 instances in the 'running' state are returned. Specify
  63. # EC2 instance states to return as a comma-separated list. This
  64. # option is overridden when 'all_instances' is True.
  65. # instance_states = pending, running, shutting-down, terminated, stopping, stopped
  66. # By default, only RDS instances in the 'available' state are returned. Set
  67. # 'all_rds_instances' to True return all RDS instances regardless of state.
  68. all_rds_instances = False
  69. # Include RDS cluster information (Aurora etc.)
  70. include_rds_clusters = False
  71. # By default, only ElastiCache clusters and nodes in the 'available' state
  72. # are returned. Set 'all_elasticache_clusters' and/or 'all_elastic_nodes'
  73. # to True return all ElastiCache clusters and nodes, regardless of state.
  74. #
  75. # Note that all_elasticache_nodes only applies to listed clusters. That means
  76. # if you set all_elastic_clusters to false, no node will be return from
  77. # unavailable clusters, regardless of the state and to what you set for
  78. # all_elasticache_nodes.
  79. all_elasticache_replication_groups = False
  80. all_elasticache_clusters = False
  81. all_elasticache_nodes = False
  82. # API calls to EC2 are slow. For this reason, we cache the results of an API
  83. # call. Set this to the path you want cache files to be written to. Two files
  84. # will be written to this directory:
  85. # - ansible-ec2.cache
  86. # - ansible-ec2.index
  87. cache_path = ~/.ansible/tmp
  88. # The number of seconds a cache file is considered valid. After this many
  89. # seconds, a new API call will be made, and the cache file will be updated.
  90. # To disable the cache, set this value to 0
  91. cache_max_age = 300
  92. # Organize groups into a nested/hierarchy instead of a flat namespace.
  93. nested_groups = False
  94. # Replace - tags when creating groups to avoid issues with ansible
  95. replace_dash_in_groups = False
  96. # If set to true, any tag of the form "a,b,c" is expanded into a list
  97. # and the results are used to create additional tag_* inventory groups.
  98. expand_csv_tags = False
  99. # The EC2 inventory output can become very large. To manage its size,
  100. # configure which groups should be created.
  101. group_by_instance_id = True
  102. group_by_region = True
  103. group_by_availability_zone = True
  104. group_by_ami_id = True
  105. group_by_instance_type = True
  106. group_by_key_pair = True
  107. group_by_vpc_id = True
  108. group_by_security_group = True
  109. group_by_tag_keys = True
  110. group_by_tag_none = True
  111. group_by_route53_names = True
  112. group_by_rds_engine = True
  113. group_by_rds_parameter_group = True
  114. group_by_elasticache_engine = True
  115. group_by_elasticache_cluster = True
  116. group_by_elasticache_parameter_group = True
  117. group_by_elasticache_replication_group = True
  118. # If you only want to include hosts that match a certain regular expression
  119. # pattern_include = staging-*
  120. # If you want to exclude any hosts that match a certain regular expression
  121. # pattern_exclude = staging-*
  122. # Instance filters can be used to control which instances are retrieved for
  123. # inventory. For the full list of possible filters, please read the EC2 API
  124. # docs: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeInstances.html#query-DescribeInstances-filters
  125. # Filters are key/value pairs separated by '=', to list multiple filters use
  126. # a list separated by commas. See examples below.
  127. # Retrieve only instances with (key=value) env=staging tag
  128. # instance_filters = tag:env=staging
  129. # Retrieve only instances with role=webservers OR role=dbservers tag
  130. # instance_filters = tag:role=webservers,tag:role=dbservers
  131. # Retrieve only t1.micro instances OR instances with tag env=staging
  132. # instance_filters = instance-type=t1.micro,tag:env=staging
  133. # You can use wildcards in filter values also. Below will list instances which
  134. # tag Name value matches webservers1*
  135. # (ex. webservers15, webservers1a, webservers123 etc)
  136. # instance_filters = tag:Name=webservers1*
  137. # A boto configuration profile may be used to separate out credentials
  138. # see http://boto.readthedocs.org/en/latest/boto_config_tut.html
  139. # boto_profile = some-boto-profile-name
  140. [credentials]
  141. # The AWS credentials can optionally be specified here. Credentials specified
  142. # here are ignored if the environment variable AWS_ACCESS_KEY_ID or
  143. # AWS_PROFILE is set, or if the boto_profile property above is set.
  144. #
  145. # Supplying AWS credentials here is not recommended, as it introduces
  146. # non-trivial security concerns. When going down this route, please make sure
  147. # to set access permissions for this file correctly, e.g. handle it the same
  148. # way as you would a private SSH key.
  149. #
  150. # Unlike the boto and AWS configure files, this section does not support
  151. # profiles.
  152. #
  153. # aws_access_key_id = AXXXXXXXXXXXXXX
  154. # aws_secret_access_key = XXXXXXXXXXXXXXXXXXX
  155. # aws_security_token = XXXXXXXXXXXXXXXXXXXXXXXXXXXX