2012-08-21 01:46:45 +02:00
|
|
|
# Ansible EC2 external inventory script settings
|
|
|
|
#
|
|
|
|
|
|
|
|
[ec2]
|
|
|
|
|
2012-08-31 15:52:12 +02:00
|
|
|
# to talk to a private eucalyptus instance uncomment these lines
|
|
|
|
# and edit edit eucalyptus_host to be the host name of your cloud controller
|
|
|
|
#eucalyptus = True
|
|
|
|
#eucalyptus_host = clc.cloud.domain.org
|
|
|
|
|
2012-08-21 01:46:45 +02:00
|
|
|
# AWS regions to make calls to. Set this to 'all' to make request to all regions
|
|
|
|
# in AWS and merge the results together. Alternatively, set this to a comma
|
|
|
|
# separated list of regions. E.g. 'us-east-1,us-west-1,us-west-2'
|
|
|
|
regions = all
|
2014-01-19 19:13:43 +01:00
|
|
|
regions_exclude = us-gov-west-1,cn-north-1
|
2012-08-21 01:46:45 +02:00
|
|
|
|
|
|
|
# When generating inventory, Ansible needs to know how to address a server.
|
|
|
|
# Each EC2 instance has a lot of variables associated with it. Here is the list:
|
|
|
|
# http://docs.pythonboto.org/en/latest/ref/ec2.html#module-boto.ec2.instance
|
|
|
|
# Below are 2 variables that are used as the address of a server:
|
|
|
|
# - destination_variable
|
|
|
|
# - vpc_destination_variable
|
|
|
|
|
|
|
|
# This is the normal destination variable to use. If you are running Ansible
|
|
|
|
# from outside EC2, then 'public_dns_name' makes the most sense. If you are
|
|
|
|
# running Ansible from within EC2, then perhaps you want to use the internal
|
|
|
|
# address, and should set this to 'private_dns_name'.
|
|
|
|
destination_variable = public_dns_name
|
|
|
|
|
|
|
|
# For server inside a VPC, using DNS names may not make sense. When an instance
|
|
|
|
# has 'subnet_id' set, this variable is used. If the subnet is public, setting
|
|
|
|
# this to 'ip_address' will return the public IP address. For instances in a
|
|
|
|
# private subnet, this should be set to 'private_ip_address', and Ansible must
|
|
|
|
# be run from with EC2.
|
|
|
|
vpc_destination_variable = ip_address
|
|
|
|
|
2013-09-23 20:00:56 +02:00
|
|
|
# To tag instances on EC2 with the resource records that point to them from
|
|
|
|
# Route53, uncomment and set 'route53' to True.
|
|
|
|
route53 = False
|
2013-09-24 03:40:18 +02:00
|
|
|
|
2014-03-27 19:58:46 +01:00
|
|
|
# To exclude RDS instances from the inventory, uncomment and set to False.
|
|
|
|
#rds = False
|
2014-03-27 16:57:24 +01:00
|
|
|
|
2013-09-24 03:40:18 +02:00
|
|
|
# Additionally, you can specify the list of zones to exclude looking up in
|
2014-03-08 11:49:55 +01:00
|
|
|
# 'route53_excluded_zones' as a comma-separated list.
|
2013-09-24 03:40:18 +02:00
|
|
|
# route53_excluded_zones = samplezone1.com, samplezone2.com
|
2013-09-23 20:00:56 +02:00
|
|
|
|
2014-07-01 21:50:04 +02:00
|
|
|
# By default, only EC2 instances in the 'running' state are returned. Set
|
|
|
|
# 'all_instances' to True to return all instances regardless of state.
|
|
|
|
all_instances = False
|
|
|
|
|
|
|
|
# By default, only RDS instances in the 'available' state are returned. Set
|
|
|
|
# 'all_rds_instances' to True return all RDS instances regardless of state.
|
|
|
|
all_rds_instances = False
|
|
|
|
|
2012-08-21 01:46:45 +02:00
|
|
|
# API calls to EC2 are slow. For this reason, we cache the results of an API
|
|
|
|
# call. Set this to the path you want cache files to be written to. Two files
|
|
|
|
# will be written to this directory:
|
|
|
|
# - ansible-ec2.cache
|
|
|
|
# - ansible-ec2.index
|
2013-12-04 02:18:15 +01:00
|
|
|
cache_path = ~/.ansible/tmp
|
2012-08-21 01:46:45 +02:00
|
|
|
|
|
|
|
# The number of seconds a cache file is considered valid. After this many
|
|
|
|
# seconds, a new API call will be made, and the cache file will be updated.
|
2014-04-29 18:13:55 +02:00
|
|
|
# To disable the cache, set this value to 0
|
2012-08-21 01:46:45 +02:00
|
|
|
cache_max_age = 300
|
2014-07-01 21:29:39 +02:00
|
|
|
|
|
|
|
# Organize groups into a nested/hierarchy instead of a flat namespace.
|
|
|
|
nested_groups = False
|
2014-08-08 15:26:14 +02:00
|
|
|
|
|
|
|
# If you only want to include hosts that match a certain regular expression
|
|
|
|
# pattern_include = stage-*
|
|
|
|
|
|
|
|
# If you want to exclude any hosts that match a certain regular expression
|
|
|
|
# pattern_exclude = stage-*
|
2014-09-03 00:50:28 +02:00
|
|
|
|
|
|
|
# Instance filters can be used to control which instances are retrieved for
|
|
|
|
# inventory. For the full list of possible filters, please read the EC2 API
|
|
|
|
# docs: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeInstances.html#query-DescribeInstances-filters
|
|
|
|
# Filters are key/value pairs separated by '=', to list multiple filters use
|
|
|
|
# a list separated by commas. See examples below.
|
|
|
|
|
|
|
|
# Retrieve only instances with (key=value) env=stage tag
|
|
|
|
# instance_filters = tag:env=stage
|
|
|
|
|
|
|
|
# Retrieve only instances with role=webservers OR role=dbservers tag
|
|
|
|
# instance_filters = tag:role=webservers,tag:role=dbservers
|
|
|
|
|
|
|
|
# Retrieve only t1.micro instances OR instances with tag env=stage
|
|
|
|
# instance_filters = instance-type=t1.micro,tag:env=stage
|
|
|
|
|
|
|
|
# You can use wildcards in filter values also. Below will list instances which
|
|
|
|
# tag Name value matches webservers1*
|
|
|
|
# (ex. webservers15, webservers1a, webservers123 etc)
|
|
|
|
# instance_filters = tag:Name=webservers1*
|