ec2.py 54 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324
  1. #!/usr/bin/env python2
  2. # pylint: skip-file
  3. '''
  4. EC2 external inventory script
  5. =================================
  6. Generates inventory that Ansible can understand by making API request to
  7. AWS EC2 using the Boto library.
  8. NOTE: This script assumes Ansible is being executed where the environment
  9. variables needed for Boto have already been set:
  10. export AWS_ACCESS_KEY_ID='AK123'
  11. export AWS_SECRET_ACCESS_KEY='abc123'
  12. This script also assumes there is an ec2.ini file alongside it. To specify a
  13. different path to ec2.ini, define the EC2_INI_PATH environment variable:
  14. export EC2_INI_PATH=/path/to/my_ec2.ini
  15. If you're using eucalyptus you need to set the above variables and
  16. you need to define:
  17. export EC2_URL=http://hostname_of_your_cc:port/services/Eucalyptus
  18. If you're using boto profiles (requires boto>=2.24.0) you can choose a profile
  19. using the --boto-profile command line argument (e.g. ec2.py --boto-profile prod) or using
  20. the AWS_PROFILE variable:
  21. AWS_PROFILE=prod ansible-playbook -i ec2.py myplaybook.yml
  22. For more details, see: http://docs.pythonboto.org/en/latest/boto_config_tut.html
  23. When run against a specific host, this script returns the following variables:
  24. - ec2_ami_launch_index
  25. - ec2_architecture
  26. - ec2_association
  27. - ec2_attachTime
  28. - ec2_attachment
  29. - ec2_attachmentId
  30. - ec2_client_token
  31. - ec2_deleteOnTermination
  32. - ec2_description
  33. - ec2_deviceIndex
  34. - ec2_dns_name
  35. - ec2_eventsSet
  36. - ec2_group_name
  37. - ec2_hypervisor
  38. - ec2_id
  39. - ec2_image_id
  40. - ec2_instanceState
  41. - ec2_instance_type
  42. - ec2_ipOwnerId
  43. - ec2_ip_address
  44. - ec2_item
  45. - ec2_kernel
  46. - ec2_key_name
  47. - ec2_launch_time
  48. - ec2_monitored
  49. - ec2_monitoring
  50. - ec2_networkInterfaceId
  51. - ec2_ownerId
  52. - ec2_persistent
  53. - ec2_placement
  54. - ec2_platform
  55. - ec2_previous_state
  56. - ec2_private_dns_name
  57. - ec2_private_ip_address
  58. - ec2_publicIp
  59. - ec2_public_dns_name
  60. - ec2_ramdisk
  61. - ec2_reason
  62. - ec2_region
  63. - ec2_requester_id
  64. - ec2_root_device_name
  65. - ec2_root_device_type
  66. - ec2_security_group_ids
  67. - ec2_security_group_names
  68. - ec2_shutdown_state
  69. - ec2_sourceDestCheck
  70. - ec2_spot_instance_request_id
  71. - ec2_state
  72. - ec2_state_code
  73. - ec2_state_reason
  74. - ec2_status
  75. - ec2_subnet_id
  76. - ec2_tenancy
  77. - ec2_virtualization_type
  78. - ec2_vpc_id
  79. These variables are pulled out of a boto.ec2.instance object. There is a lack of
  80. consistency with variable spellings (camelCase and underscores) since this
  81. just loops through all variables the object exposes. It is preferred to use the
  82. ones with underscores when multiple exist.
  83. In addition, if an instance has AWS Tags associated with it, each tag is a new
  84. variable named:
  85. - ec2_tag_[Key] = [Value]
  86. Security groups are comma-separated in 'ec2_security_group_ids' and
  87. 'ec2_security_group_names'.
  88. '''
  89. # (c) 2012, Peter Sankauskas
  90. #
  91. # This file is part of Ansible,
  92. #
  93. # Ansible is free software: you can redistribute it and/or modify
  94. # it under the terms of the GNU General Public License as published by
  95. # the Free Software Foundation, either version 3 of the License, or
  96. # (at your option) any later version.
  97. #
  98. # Ansible is distributed in the hope that it will be useful,
  99. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  100. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  101. # GNU General Public License for more details.
  102. #
  103. # You should have received a copy of the GNU General Public License
  104. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
  105. ######################################################################
  106. import sys
  107. import os
  108. import argparse
  109. import re
  110. from time import time
  111. import boto
  112. from boto import ec2
  113. from boto import rds
  114. from boto import elasticache
  115. from boto import route53
  116. import six
  117. from six.moves import configparser
  118. from collections import defaultdict
  119. try:
  120. import json
  121. except ImportError:
  122. import simplejson as json
  123. class Ec2Inventory(object):
  124. def _empty_inventory(self):
  125. return {"_meta" : {"hostvars" : {}}}
  126. def __init__(self):
  127. ''' Main execution path '''
  128. # Inventory grouped by instance IDs, tags, security groups, regions,
  129. # and availability zones
  130. self.inventory = self._empty_inventory()
  131. # Index of hostname (address) to instance ID
  132. self.index = {}
  133. # Boto profile to use (if any)
  134. self.boto_profile = None
  135. # Read settings and parse CLI arguments
  136. self.parse_cli_args()
  137. self.read_settings()
  138. # Make sure that profile_name is not passed at all if not set
  139. # as pre 2.24 boto will fall over otherwise
  140. if self.boto_profile:
  141. if not hasattr(boto.ec2.EC2Connection, 'profile_name'):
  142. self.fail_with_error("boto version must be >= 2.24 to use profile")
  143. # Cache
  144. if self.args.refresh_cache:
  145. self.do_api_calls_update_cache()
  146. elif not self.is_cache_valid():
  147. self.do_api_calls_update_cache()
  148. # Data to print
  149. if self.args.host:
  150. data_to_print = self.get_host_info()
  151. elif self.args.list:
  152. # Display list of instances for inventory
  153. if self.inventory == self._empty_inventory():
  154. data_to_print = self.get_inventory_from_cache()
  155. else:
  156. data_to_print = self.json_format_dict(self.inventory, True)
  157. print(data_to_print)
  158. def is_cache_valid(self):
  159. ''' Determines if the cache files have expired, or if it is still valid '''
  160. if os.path.isfile(self.cache_path_cache):
  161. mod_time = os.path.getmtime(self.cache_path_cache)
  162. current_time = time()
  163. if (mod_time + self.cache_max_age) > current_time:
  164. if os.path.isfile(self.cache_path_index):
  165. return True
  166. return False
  167. def read_settings(self):
  168. ''' Reads the settings from the ec2.ini file '''
  169. if six.PY3:
  170. config = configparser.ConfigParser()
  171. else:
  172. config = configparser.SafeConfigParser()
  173. ec2_default_ini_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'ec2.ini')
  174. ec2_ini_path = os.path.expanduser(os.path.expandvars(os.environ.get('EC2_INI_PATH', ec2_default_ini_path)))
  175. config.read(ec2_ini_path)
  176. # is eucalyptus?
  177. self.eucalyptus_host = None
  178. self.eucalyptus = False
  179. if config.has_option('ec2', 'eucalyptus'):
  180. self.eucalyptus = config.getboolean('ec2', 'eucalyptus')
  181. if self.eucalyptus and config.has_option('ec2', 'eucalyptus_host'):
  182. self.eucalyptus_host = config.get('ec2', 'eucalyptus_host')
  183. # Regions
  184. self.regions = []
  185. configRegions = config.get('ec2', 'regions')
  186. configRegions_exclude = config.get('ec2', 'regions_exclude')
  187. if (configRegions == 'all'):
  188. if self.eucalyptus_host:
  189. self.regions.append(boto.connect_euca(host=self.eucalyptus_host).region.name)
  190. else:
  191. for regionInfo in ec2.regions():
  192. if regionInfo.name not in configRegions_exclude:
  193. self.regions.append(regionInfo.name)
  194. else:
  195. self.regions = configRegions.split(",")
  196. # Destination addresses
  197. self.destination_variable = config.get('ec2', 'destination_variable')
  198. self.vpc_destination_variable = config.get('ec2', 'vpc_destination_variable')
  199. if config.has_option('ec2', 'destination_format') and \
  200. config.has_option('ec2', 'destination_format_tags'):
  201. self.destination_format = config.get('ec2', 'destination_format')
  202. self.destination_format_tags = config.get('ec2', 'destination_format_tags').split(',')
  203. else:
  204. self.destination_format = None
  205. self.destination_format_tags = None
  206. # Route53
  207. self.route53_enabled = config.getboolean('ec2', 'route53')
  208. self.route53_excluded_zones = []
  209. if config.has_option('ec2', 'route53_excluded_zones'):
  210. self.route53_excluded_zones.extend(
  211. config.get('ec2', 'route53_excluded_zones', '').split(','))
  212. # Include RDS instances?
  213. self.rds_enabled = True
  214. if config.has_option('ec2', 'rds'):
  215. self.rds_enabled = config.getboolean('ec2', 'rds')
  216. # Include ElastiCache instances?
  217. self.elasticache_enabled = True
  218. if config.has_option('ec2', 'elasticache'):
  219. self.elasticache_enabled = config.getboolean('ec2', 'elasticache')
  220. # Return all EC2 instances?
  221. if config.has_option('ec2', 'all_instances'):
  222. self.all_instances = config.getboolean('ec2', 'all_instances')
  223. else:
  224. self.all_instances = False
  225. # Instance states to be gathered in inventory. Default is 'running'.
  226. # Setting 'all_instances' to 'yes' overrides this option.
  227. ec2_valid_instance_states = [
  228. 'pending',
  229. 'running',
  230. 'shutting-down',
  231. 'terminated',
  232. 'stopping',
  233. 'stopped'
  234. ]
  235. self.ec2_instance_states = []
  236. if self.all_instances:
  237. self.ec2_instance_states = ec2_valid_instance_states
  238. elif config.has_option('ec2', 'instance_states'):
  239. for instance_state in config.get('ec2', 'instance_states').split(','):
  240. instance_state = instance_state.strip()
  241. if instance_state not in ec2_valid_instance_states:
  242. continue
  243. self.ec2_instance_states.append(instance_state)
  244. else:
  245. self.ec2_instance_states = ['running']
  246. # Return all RDS instances? (if RDS is enabled)
  247. if config.has_option('ec2', 'all_rds_instances') and self.rds_enabled:
  248. self.all_rds_instances = config.getboolean('ec2', 'all_rds_instances')
  249. else:
  250. self.all_rds_instances = False
  251. # Return all ElastiCache replication groups? (if ElastiCache is enabled)
  252. if config.has_option('ec2', 'all_elasticache_replication_groups') and self.elasticache_enabled:
  253. self.all_elasticache_replication_groups = config.getboolean('ec2', 'all_elasticache_replication_groups')
  254. else:
  255. self.all_elasticache_replication_groups = False
  256. # Return all ElastiCache clusters? (if ElastiCache is enabled)
  257. if config.has_option('ec2', 'all_elasticache_clusters') and self.elasticache_enabled:
  258. self.all_elasticache_clusters = config.getboolean('ec2', 'all_elasticache_clusters')
  259. else:
  260. self.all_elasticache_clusters = False
  261. # Return all ElastiCache nodes? (if ElastiCache is enabled)
  262. if config.has_option('ec2', 'all_elasticache_nodes') and self.elasticache_enabled:
  263. self.all_elasticache_nodes = config.getboolean('ec2', 'all_elasticache_nodes')
  264. else:
  265. self.all_elasticache_nodes = False
  266. # boto configuration profile (prefer CLI argument)
  267. self.boto_profile = self.args.boto_profile
  268. if config.has_option('ec2', 'boto_profile') and not self.boto_profile:
  269. self.boto_profile = config.get('ec2', 'boto_profile')
  270. # Cache related
  271. cache_dir = os.path.expanduser(config.get('ec2', 'cache_path'))
  272. if self.boto_profile:
  273. cache_dir = os.path.join(cache_dir, 'profile_' + self.boto_profile)
  274. if not os.path.exists(cache_dir):
  275. os.makedirs(cache_dir)
  276. self.cache_path_cache = cache_dir + "/ansible-ec2.cache"
  277. self.cache_path_index = cache_dir + "/ansible-ec2.index"
  278. self.cache_max_age = config.getint('ec2', 'cache_max_age')
  279. # Configure nested groups instead of flat namespace.
  280. if config.has_option('ec2', 'nested_groups'):
  281. self.nested_groups = config.getboolean('ec2', 'nested_groups')
  282. else:
  283. self.nested_groups = False
  284. # Replace dash or not in group names
  285. if config.has_option('ec2', 'replace_dash_in_groups'):
  286. self.replace_dash_in_groups = config.getboolean('ec2', 'replace_dash_in_groups')
  287. else:
  288. self.replace_dash_in_groups = True
  289. # Configure which groups should be created.
  290. group_by_options = [
  291. 'group_by_instance_id',
  292. 'group_by_region',
  293. 'group_by_availability_zone',
  294. 'group_by_ami_id',
  295. 'group_by_instance_type',
  296. 'group_by_key_pair',
  297. 'group_by_vpc_id',
  298. 'group_by_security_group',
  299. 'group_by_tag_keys',
  300. 'group_by_tag_none',
  301. 'group_by_route53_names',
  302. 'group_by_rds_engine',
  303. 'group_by_rds_parameter_group',
  304. 'group_by_elasticache_engine',
  305. 'group_by_elasticache_cluster',
  306. 'group_by_elasticache_parameter_group',
  307. 'group_by_elasticache_replication_group',
  308. ]
  309. for option in group_by_options:
  310. if config.has_option('ec2', option):
  311. setattr(self, option, config.getboolean('ec2', option))
  312. else:
  313. setattr(self, option, True)
  314. # Do we need to just include hosts that match a pattern?
  315. try:
  316. pattern_include = config.get('ec2', 'pattern_include')
  317. if pattern_include and len(pattern_include) > 0:
  318. self.pattern_include = re.compile(pattern_include)
  319. else:
  320. self.pattern_include = None
  321. except configparser.NoOptionError:
  322. self.pattern_include = None
  323. # Do we need to exclude hosts that match a pattern?
  324. try:
  325. pattern_exclude = config.get('ec2', 'pattern_exclude');
  326. if pattern_exclude and len(pattern_exclude) > 0:
  327. self.pattern_exclude = re.compile(pattern_exclude)
  328. else:
  329. self.pattern_exclude = None
  330. except configparser.NoOptionError:
  331. self.pattern_exclude = None
  332. # Instance filters (see boto and EC2 API docs). Ignore invalid filters.
  333. self.ec2_instance_filters = defaultdict(list)
  334. if config.has_option('ec2', 'instance_filters'):
  335. for instance_filter in config.get('ec2', 'instance_filters', '').split(','):
  336. instance_filter = instance_filter.strip()
  337. if not instance_filter or '=' not in instance_filter:
  338. continue
  339. filter_key, filter_value = [x.strip() for x in instance_filter.split('=', 1)]
  340. if not filter_key:
  341. continue
  342. self.ec2_instance_filters[filter_key].append(filter_value)
  343. def parse_cli_args(self):
  344. ''' Command line argument processing '''
  345. parser = argparse.ArgumentParser(description='Produce an Ansible Inventory file based on EC2')
  346. parser.add_argument('--list', action='store_true', default=True,
  347. help='List instances (default: True)')
  348. parser.add_argument('--host', action='store',
  349. help='Get all the variables about a specific instance')
  350. parser.add_argument('--refresh-cache', action='store_true', default=False,
  351. help='Force refresh of cache by making API requests to EC2 (default: False - use cache files)')
  352. parser.add_argument('--boto-profile', action='store',
  353. help='Use boto profile for connections to EC2')
  354. self.args = parser.parse_args()
  355. def do_api_calls_update_cache(self):
  356. ''' Do API calls to each region, and save data in cache files '''
  357. if self.route53_enabled:
  358. self.get_route53_records()
  359. for region in self.regions:
  360. self.get_instances_by_region(region)
  361. if self.rds_enabled:
  362. self.get_rds_instances_by_region(region)
  363. if self.elasticache_enabled:
  364. self.get_elasticache_clusters_by_region(region)
  365. self.get_elasticache_replication_groups_by_region(region)
  366. self.write_to_cache(self.inventory, self.cache_path_cache)
  367. self.write_to_cache(self.index, self.cache_path_index)
  368. def connect(self, region):
  369. ''' create connection to api server'''
  370. if self.eucalyptus:
  371. conn = boto.connect_euca(host=self.eucalyptus_host)
  372. conn.APIVersion = '2010-08-31'
  373. else:
  374. conn = self.connect_to_aws(ec2, region)
  375. return conn
  376. def boto_fix_security_token_in_profile(self, connect_args):
  377. ''' monkey patch for boto issue boto/boto#2100 '''
  378. profile = 'profile ' + self.boto_profile
  379. if boto.config.has_option(profile, 'aws_security_token'):
  380. connect_args['security_token'] = boto.config.get(profile, 'aws_security_token')
  381. return connect_args
  382. def connect_to_aws(self, module, region):
  383. connect_args = {}
  384. # only pass the profile name if it's set (as it is not supported by older boto versions)
  385. if self.boto_profile:
  386. connect_args['profile_name'] = self.boto_profile
  387. self.boto_fix_security_token_in_profile(connect_args)
  388. conn = module.connect_to_region(region, **connect_args)
  389. # connect_to_region will fail "silently" by returning None if the region name is wrong or not supported
  390. if conn is None:
  391. self.fail_with_error("region name: %s likely not supported, or AWS is down. connection to region failed." % region)
  392. return conn
  393. def get_instances_by_region(self, region):
  394. ''' Makes an AWS EC2 API call to the list of instances in a particular
  395. region '''
  396. try:
  397. conn = self.connect(region)
  398. reservations = []
  399. if self.ec2_instance_filters:
  400. for filter_key, filter_values in self.ec2_instance_filters.items():
  401. reservations.extend(conn.get_all_instances(filters = { filter_key : filter_values }))
  402. else:
  403. reservations = conn.get_all_instances()
  404. for reservation in reservations:
  405. for instance in reservation.instances:
  406. self.add_instance(instance, region)
  407. except boto.exception.BotoServerError as e:
  408. if e.error_code == 'AuthFailure':
  409. error = self.get_auth_error_message()
  410. else:
  411. backend = 'Eucalyptus' if self.eucalyptus else 'AWS'
  412. error = "Error connecting to %s backend.\n%s" % (backend, e.message)
  413. self.fail_with_error(error, 'getting EC2 instances')
  414. def get_rds_instances_by_region(self, region):
  415. ''' Makes an AWS API call to the list of RDS instances in a particular
  416. region '''
  417. try:
  418. conn = self.connect_to_aws(rds, region)
  419. if conn:
  420. instances = conn.get_all_dbinstances()
  421. for instance in instances:
  422. self.add_rds_instance(instance, region)
  423. except boto.exception.BotoServerError as e:
  424. error = e.reason
  425. if e.error_code == 'AuthFailure':
  426. error = self.get_auth_error_message()
  427. if not e.reason == "Forbidden":
  428. error = "Looks like AWS RDS is down:\n%s" % e.message
  429. self.fail_with_error(error, 'getting RDS instances')
  430. def get_elasticache_clusters_by_region(self, region):
  431. ''' Makes an AWS API call to the list of ElastiCache clusters (with
  432. nodes' info) in a particular region.'''
  433. # ElastiCache boto module doesn't provide a get_all_intances method,
  434. # that's why we need to call describe directly (it would be called by
  435. # the shorthand method anyway...)
  436. try:
  437. conn = elasticache.connect_to_region(region)
  438. if conn:
  439. # show_cache_node_info = True
  440. # because we also want nodes' information
  441. response = conn.describe_cache_clusters(None, None, None, True)
  442. except boto.exception.BotoServerError as e:
  443. error = e.reason
  444. if e.error_code == 'AuthFailure':
  445. error = self.get_auth_error_message()
  446. if not e.reason == "Forbidden":
  447. error = "Looks like AWS ElastiCache is down:\n%s" % e.message
  448. self.fail_with_error(error, 'getting ElastiCache clusters')
  449. try:
  450. # Boto also doesn't provide wrapper classes to CacheClusters or
  451. # CacheNodes. Because of that wo can't make use of the get_list
  452. # method in the AWSQueryConnection. Let's do the work manually
  453. clusters = response['DescribeCacheClustersResponse']['DescribeCacheClustersResult']['CacheClusters']
  454. except KeyError as e:
  455. error = "ElastiCache query to AWS failed (unexpected format)."
  456. self.fail_with_error(error, 'getting ElastiCache clusters')
  457. for cluster in clusters:
  458. self.add_elasticache_cluster(cluster, region)
  459. def get_elasticache_replication_groups_by_region(self, region):
  460. ''' Makes an AWS API call to the list of ElastiCache replication groups
  461. in a particular region.'''
  462. # ElastiCache boto module doesn't provide a get_all_intances method,
  463. # that's why we need to call describe directly (it would be called by
  464. # the shorthand method anyway...)
  465. try:
  466. conn = elasticache.connect_to_region(region)
  467. if conn:
  468. response = conn.describe_replication_groups()
  469. except boto.exception.BotoServerError as e:
  470. error = e.reason
  471. if e.error_code == 'AuthFailure':
  472. error = self.get_auth_error_message()
  473. if not e.reason == "Forbidden":
  474. error = "Looks like AWS ElastiCache [Replication Groups] is down:\n%s" % e.message
  475. self.fail_with_error(error, 'getting ElastiCache clusters')
  476. try:
  477. # Boto also doesn't provide wrapper classes to ReplicationGroups
  478. # Because of that wo can't make use of the get_list method in the
  479. # AWSQueryConnection. Let's do the work manually
  480. replication_groups = response['DescribeReplicationGroupsResponse']['DescribeReplicationGroupsResult']['ReplicationGroups']
  481. except KeyError as e:
  482. error = "ElastiCache [Replication Groups] query to AWS failed (unexpected format)."
  483. self.fail_with_error(error, 'getting ElastiCache clusters')
  484. for replication_group in replication_groups:
  485. self.add_elasticache_replication_group(replication_group, region)
  486. def get_auth_error_message(self):
  487. ''' create an informative error message if there is an issue authenticating'''
  488. errors = ["Authentication error retrieving ec2 inventory."]
  489. if None in [os.environ.get('AWS_ACCESS_KEY_ID'), os.environ.get('AWS_SECRET_ACCESS_KEY')]:
  490. errors.append(' - No AWS_ACCESS_KEY_ID or AWS_SECRET_ACCESS_KEY environment vars found')
  491. else:
  492. errors.append(' - AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment vars found but may not be correct')
  493. boto_paths = ['/etc/boto.cfg', '~/.boto', '~/.aws/credentials']
  494. boto_config_found = list(p for p in boto_paths if os.path.isfile(os.path.expanduser(p)))
  495. if len(boto_config_found) > 0:
  496. errors.append(" - Boto configs found at '%s', but the credentials contained may not be correct" % ', '.join(boto_config_found))
  497. else:
  498. errors.append(" - No Boto config found at any expected location '%s'" % ', '.join(boto_paths))
  499. return '\n'.join(errors)
  500. def fail_with_error(self, err_msg, err_operation=None):
  501. '''log an error to std err for ansible-playbook to consume and exit'''
  502. if err_operation:
  503. err_msg = 'ERROR: "{err_msg}", while: {err_operation}'.format(
  504. err_msg=err_msg, err_operation=err_operation)
  505. sys.stderr.write(err_msg)
  506. sys.exit(1)
  507. def get_instance(self, region, instance_id):
  508. conn = self.connect(region)
  509. reservations = conn.get_all_instances([instance_id])
  510. for reservation in reservations:
  511. for instance in reservation.instances:
  512. return instance
  513. def add_instance(self, instance, region):
  514. ''' Adds an instance to the inventory and index, as long as it is
  515. addressable '''
  516. # Only return instances with desired instance states
  517. if instance.state not in self.ec2_instance_states:
  518. return
  519. # Select the best destination address
  520. if self.destination_format and self.destination_format_tags:
  521. dest = self.destination_format.format(*[ getattr(instance, 'tags').get(tag, 'nil') for tag in self.destination_format_tags ])
  522. elif instance.subnet_id:
  523. dest = getattr(instance, self.vpc_destination_variable, None)
  524. if dest is None:
  525. dest = getattr(instance, 'tags').get(self.vpc_destination_variable, None)
  526. else:
  527. dest = getattr(instance, self.destination_variable, None)
  528. if dest is None:
  529. dest = getattr(instance, 'tags').get(self.destination_variable, None)
  530. if not dest:
  531. # Skip instances we cannot address (e.g. private VPC subnet)
  532. return
  533. # if we only want to include hosts that match a pattern, skip those that don't
  534. if self.pattern_include and not self.pattern_include.match(dest):
  535. return
  536. # if we need to exclude hosts that match a pattern, skip those
  537. if self.pattern_exclude and self.pattern_exclude.match(dest):
  538. return
  539. # Add to index
  540. self.index[dest] = [region, instance.id]
  541. # Inventory: Group by instance ID (always a group of 1)
  542. if self.group_by_instance_id:
  543. self.inventory[instance.id] = [dest]
  544. if self.nested_groups:
  545. self.push_group(self.inventory, 'instances', instance.id)
  546. # Inventory: Group by region
  547. if self.group_by_region:
  548. self.push(self.inventory, region, dest)
  549. if self.nested_groups:
  550. self.push_group(self.inventory, 'regions', region)
  551. # Inventory: Group by availability zone
  552. if self.group_by_availability_zone:
  553. self.push(self.inventory, instance.placement, dest)
  554. if self.nested_groups:
  555. if self.group_by_region:
  556. self.push_group(self.inventory, region, instance.placement)
  557. self.push_group(self.inventory, 'zones', instance.placement)
  558. # Inventory: Group by Amazon Machine Image (AMI) ID
  559. if self.group_by_ami_id:
  560. ami_id = self.to_safe(instance.image_id)
  561. self.push(self.inventory, ami_id, dest)
  562. if self.nested_groups:
  563. self.push_group(self.inventory, 'images', ami_id)
  564. # Inventory: Group by instance type
  565. if self.group_by_instance_type:
  566. type_name = self.to_safe('type_' + instance.instance_type)
  567. self.push(self.inventory, type_name, dest)
  568. if self.nested_groups:
  569. self.push_group(self.inventory, 'types', type_name)
  570. # Inventory: Group by key pair
  571. if self.group_by_key_pair and instance.key_name:
  572. key_name = self.to_safe('key_' + instance.key_name)
  573. self.push(self.inventory, key_name, dest)
  574. if self.nested_groups:
  575. self.push_group(self.inventory, 'keys', key_name)
  576. # Inventory: Group by VPC
  577. if self.group_by_vpc_id and instance.vpc_id:
  578. vpc_id_name = self.to_safe('vpc_id_' + instance.vpc_id)
  579. self.push(self.inventory, vpc_id_name, dest)
  580. if self.nested_groups:
  581. self.push_group(self.inventory, 'vpcs', vpc_id_name)
  582. # Inventory: Group by security group
  583. if self.group_by_security_group:
  584. try:
  585. for group in instance.groups:
  586. key = self.to_safe("security_group_" + group.name)
  587. self.push(self.inventory, key, dest)
  588. if self.nested_groups:
  589. self.push_group(self.inventory, 'security_groups', key)
  590. except AttributeError:
  591. self.fail_with_error('\n'.join(['Package boto seems a bit older.',
  592. 'Please upgrade boto >= 2.3.0.']))
  593. # Inventory: Group by tag keys
  594. if self.group_by_tag_keys:
  595. for k, v in instance.tags.items():
  596. if v:
  597. key = self.to_safe("tag_" + k + "=" + v)
  598. else:
  599. key = self.to_safe("tag_" + k)
  600. self.push(self.inventory, key, dest)
  601. if self.nested_groups:
  602. self.push_group(self.inventory, 'tags', self.to_safe("tag_" + k))
  603. if v:
  604. self.push_group(self.inventory, self.to_safe("tag_" + k), key)
  605. # Inventory: Group by Route53 domain names if enabled
  606. if self.route53_enabled and self.group_by_route53_names:
  607. route53_names = self.get_instance_route53_names(instance)
  608. for name in route53_names:
  609. self.push(self.inventory, name, dest)
  610. if self.nested_groups:
  611. self.push_group(self.inventory, 'route53', name)
  612. # Global Tag: instances without tags
  613. if self.group_by_tag_none and len(instance.tags) == 0:
  614. self.push(self.inventory, 'tag_none', dest)
  615. if self.nested_groups:
  616. self.push_group(self.inventory, 'tags', 'tag_none')
  617. # Global Tag: tag all EC2 instances
  618. self.push(self.inventory, 'ec2', dest)
  619. self.inventory["_meta"]["hostvars"][dest] = self.get_host_info_dict_from_instance(instance)
  620. def add_rds_instance(self, instance, region):
  621. ''' Adds an RDS instance to the inventory and index, as long as it is
  622. addressable '''
  623. # Only want available instances unless all_rds_instances is True
  624. if not self.all_rds_instances and instance.status != 'available':
  625. return
  626. # Select the best destination address
  627. dest = instance.endpoint[0]
  628. if not dest:
  629. # Skip instances we cannot address (e.g. private VPC subnet)
  630. return
  631. # Add to index
  632. self.index[dest] = [region, instance.id]
  633. # Inventory: Group by instance ID (always a group of 1)
  634. if self.group_by_instance_id:
  635. self.inventory[instance.id] = [dest]
  636. if self.nested_groups:
  637. self.push_group(self.inventory, 'instances', instance.id)
  638. # Inventory: Group by region
  639. if self.group_by_region:
  640. self.push(self.inventory, region, dest)
  641. if self.nested_groups:
  642. self.push_group(self.inventory, 'regions', region)
  643. # Inventory: Group by availability zone
  644. if self.group_by_availability_zone:
  645. self.push(self.inventory, instance.availability_zone, dest)
  646. if self.nested_groups:
  647. if self.group_by_region:
  648. self.push_group(self.inventory, region, instance.availability_zone)
  649. self.push_group(self.inventory, 'zones', instance.availability_zone)
  650. # Inventory: Group by instance type
  651. if self.group_by_instance_type:
  652. type_name = self.to_safe('type_' + instance.instance_class)
  653. self.push(self.inventory, type_name, dest)
  654. if self.nested_groups:
  655. self.push_group(self.inventory, 'types', type_name)
  656. # Inventory: Group by VPC
  657. if self.group_by_vpc_id and instance.subnet_group and instance.subnet_group.vpc_id:
  658. vpc_id_name = self.to_safe('vpc_id_' + instance.subnet_group.vpc_id)
  659. self.push(self.inventory, vpc_id_name, dest)
  660. if self.nested_groups:
  661. self.push_group(self.inventory, 'vpcs', vpc_id_name)
  662. # Inventory: Group by security group
  663. if self.group_by_security_group:
  664. try:
  665. if instance.security_group:
  666. key = self.to_safe("security_group_" + instance.security_group.name)
  667. self.push(self.inventory, key, dest)
  668. if self.nested_groups:
  669. self.push_group(self.inventory, 'security_groups', key)
  670. except AttributeError:
  671. self.fail_with_error('\n'.join(['Package boto seems a bit older.',
  672. 'Please upgrade boto >= 2.3.0.']))
  673. # Inventory: Group by engine
  674. if self.group_by_rds_engine:
  675. self.push(self.inventory, self.to_safe("rds_" + instance.engine), dest)
  676. if self.nested_groups:
  677. self.push_group(self.inventory, 'rds_engines', self.to_safe("rds_" + instance.engine))
  678. # Inventory: Group by parameter group
  679. if self.group_by_rds_parameter_group:
  680. self.push(self.inventory, self.to_safe("rds_parameter_group_" + instance.parameter_group.name), dest)
  681. if self.nested_groups:
  682. self.push_group(self.inventory, 'rds_parameter_groups', self.to_safe("rds_parameter_group_" + instance.parameter_group.name))
  683. # Global Tag: all RDS instances
  684. self.push(self.inventory, 'rds', dest)
  685. self.inventory["_meta"]["hostvars"][dest] = self.get_host_info_dict_from_instance(instance)
  686. def add_elasticache_cluster(self, cluster, region):
  687. ''' Adds an ElastiCache cluster to the inventory and index, as long as
  688. it's nodes are addressable '''
  689. # Only want available clusters unless all_elasticache_clusters is True
  690. if not self.all_elasticache_clusters and cluster['CacheClusterStatus'] != 'available':
  691. return
  692. # Select the best destination address
  693. if 'ConfigurationEndpoint' in cluster and cluster['ConfigurationEndpoint']:
  694. # Memcached cluster
  695. dest = cluster['ConfigurationEndpoint']['Address']
  696. is_redis = False
  697. else:
  698. # Redis sigle node cluster
  699. # Because all Redis clusters are single nodes, we'll merge the
  700. # info from the cluster with info about the node
  701. dest = cluster['CacheNodes'][0]['Endpoint']['Address']
  702. is_redis = True
  703. if not dest:
  704. # Skip clusters we cannot address (e.g. private VPC subnet)
  705. return
  706. # Add to index
  707. self.index[dest] = [region, cluster['CacheClusterId']]
  708. # Inventory: Group by instance ID (always a group of 1)
  709. if self.group_by_instance_id:
  710. self.inventory[cluster['CacheClusterId']] = [dest]
  711. if self.nested_groups:
  712. self.push_group(self.inventory, 'instances', cluster['CacheClusterId'])
  713. # Inventory: Group by region
  714. if self.group_by_region and not is_redis:
  715. self.push(self.inventory, region, dest)
  716. if self.nested_groups:
  717. self.push_group(self.inventory, 'regions', region)
  718. # Inventory: Group by availability zone
  719. if self.group_by_availability_zone and not is_redis:
  720. self.push(self.inventory, cluster['PreferredAvailabilityZone'], dest)
  721. if self.nested_groups:
  722. if self.group_by_region:
  723. self.push_group(self.inventory, region, cluster['PreferredAvailabilityZone'])
  724. self.push_group(self.inventory, 'zones', cluster['PreferredAvailabilityZone'])
  725. # Inventory: Group by node type
  726. if self.group_by_instance_type and not is_redis:
  727. type_name = self.to_safe('type_' + cluster['CacheNodeType'])
  728. self.push(self.inventory, type_name, dest)
  729. if self.nested_groups:
  730. self.push_group(self.inventory, 'types', type_name)
  731. # Inventory: Group by VPC (information not available in the current
  732. # AWS API version for ElastiCache)
  733. # Inventory: Group by security group
  734. if self.group_by_security_group and not is_redis:
  735. # Check for the existence of the 'SecurityGroups' key and also if
  736. # this key has some value. When the cluster is not placed in a SG
  737. # the query can return None here and cause an error.
  738. if 'SecurityGroups' in cluster and cluster['SecurityGroups'] is not None:
  739. for security_group in cluster['SecurityGroups']:
  740. key = self.to_safe("security_group_" + security_group['SecurityGroupId'])
  741. self.push(self.inventory, key, dest)
  742. if self.nested_groups:
  743. self.push_group(self.inventory, 'security_groups', key)
  744. # Inventory: Group by engine
  745. if self.group_by_elasticache_engine and not is_redis:
  746. self.push(self.inventory, self.to_safe("elasticache_" + cluster['Engine']), dest)
  747. if self.nested_groups:
  748. self.push_group(self.inventory, 'elasticache_engines', self.to_safe(cluster['Engine']))
  749. # Inventory: Group by parameter group
  750. if self.group_by_elasticache_parameter_group:
  751. self.push(self.inventory, self.to_safe("elasticache_parameter_group_" + cluster['CacheParameterGroup']['CacheParameterGroupName']), dest)
  752. if self.nested_groups:
  753. self.push_group(self.inventory, 'elasticache_parameter_groups', self.to_safe(cluster['CacheParameterGroup']['CacheParameterGroupName']))
  754. # Inventory: Group by replication group
  755. if self.group_by_elasticache_replication_group and 'ReplicationGroupId' in cluster and cluster['ReplicationGroupId']:
  756. self.push(self.inventory, self.to_safe("elasticache_replication_group_" + cluster['ReplicationGroupId']), dest)
  757. if self.nested_groups:
  758. self.push_group(self.inventory, 'elasticache_replication_groups', self.to_safe(cluster['ReplicationGroupId']))
  759. # Global Tag: all ElastiCache clusters
  760. self.push(self.inventory, 'elasticache_clusters', cluster['CacheClusterId'])
  761. host_info = self.get_host_info_dict_from_describe_dict(cluster)
  762. self.inventory["_meta"]["hostvars"][dest] = host_info
  763. # Add the nodes
  764. for node in cluster['CacheNodes']:
  765. self.add_elasticache_node(node, cluster, region)
  766. def add_elasticache_node(self, node, cluster, region):
  767. ''' Adds an ElastiCache node to the inventory and index, as long as
  768. it is addressable '''
  769. # Only want available nodes unless all_elasticache_nodes is True
  770. if not self.all_elasticache_nodes and node['CacheNodeStatus'] != 'available':
  771. return
  772. # Select the best destination address
  773. dest = node['Endpoint']['Address']
  774. if not dest:
  775. # Skip nodes we cannot address (e.g. private VPC subnet)
  776. return
  777. node_id = self.to_safe(cluster['CacheClusterId'] + '_' + node['CacheNodeId'])
  778. # Add to index
  779. self.index[dest] = [region, node_id]
  780. # Inventory: Group by node ID (always a group of 1)
  781. if self.group_by_instance_id:
  782. self.inventory[node_id] = [dest]
  783. if self.nested_groups:
  784. self.push_group(self.inventory, 'instances', node_id)
  785. # Inventory: Group by region
  786. if self.group_by_region:
  787. self.push(self.inventory, region, dest)
  788. if self.nested_groups:
  789. self.push_group(self.inventory, 'regions', region)
  790. # Inventory: Group by availability zone
  791. if self.group_by_availability_zone:
  792. self.push(self.inventory, cluster['PreferredAvailabilityZone'], dest)
  793. if self.nested_groups:
  794. if self.group_by_region:
  795. self.push_group(self.inventory, region, cluster['PreferredAvailabilityZone'])
  796. self.push_group(self.inventory, 'zones', cluster['PreferredAvailabilityZone'])
  797. # Inventory: Group by node type
  798. if self.group_by_instance_type:
  799. type_name = self.to_safe('type_' + cluster['CacheNodeType'])
  800. self.push(self.inventory, type_name, dest)
  801. if self.nested_groups:
  802. self.push_group(self.inventory, 'types', type_name)
  803. # Inventory: Group by VPC (information not available in the current
  804. # AWS API version for ElastiCache)
  805. # Inventory: Group by security group
  806. if self.group_by_security_group:
  807. # Check for the existence of the 'SecurityGroups' key and also if
  808. # this key has some value. When the cluster is not placed in a SG
  809. # the query can return None here and cause an error.
  810. if 'SecurityGroups' in cluster and cluster['SecurityGroups'] is not None:
  811. for security_group in cluster['SecurityGroups']:
  812. key = self.to_safe("security_group_" + security_group['SecurityGroupId'])
  813. self.push(self.inventory, key, dest)
  814. if self.nested_groups:
  815. self.push_group(self.inventory, 'security_groups', key)
  816. # Inventory: Group by engine
  817. if self.group_by_elasticache_engine:
  818. self.push(self.inventory, self.to_safe("elasticache_" + cluster['Engine']), dest)
  819. if self.nested_groups:
  820. self.push_group(self.inventory, 'elasticache_engines', self.to_safe("elasticache_" + cluster['Engine']))
  821. # Inventory: Group by parameter group (done at cluster level)
  822. # Inventory: Group by replication group (done at cluster level)
  823. # Inventory: Group by ElastiCache Cluster
  824. if self.group_by_elasticache_cluster:
  825. self.push(self.inventory, self.to_safe("elasticache_cluster_" + cluster['CacheClusterId']), dest)
  826. # Global Tag: all ElastiCache nodes
  827. self.push(self.inventory, 'elasticache_nodes', dest)
  828. host_info = self.get_host_info_dict_from_describe_dict(node)
  829. if dest in self.inventory["_meta"]["hostvars"]:
  830. self.inventory["_meta"]["hostvars"][dest].update(host_info)
  831. else:
  832. self.inventory["_meta"]["hostvars"][dest] = host_info
  833. def add_elasticache_replication_group(self, replication_group, region):
  834. ''' Adds an ElastiCache replication group to the inventory and index '''
  835. # Only want available clusters unless all_elasticache_replication_groups is True
  836. if not self.all_elasticache_replication_groups and replication_group['Status'] != 'available':
  837. return
  838. # Select the best destination address (PrimaryEndpoint)
  839. dest = replication_group['NodeGroups'][0]['PrimaryEndpoint']['Address']
  840. if not dest:
  841. # Skip clusters we cannot address (e.g. private VPC subnet)
  842. return
  843. # Add to index
  844. self.index[dest] = [region, replication_group['ReplicationGroupId']]
  845. # Inventory: Group by ID (always a group of 1)
  846. if self.group_by_instance_id:
  847. self.inventory[replication_group['ReplicationGroupId']] = [dest]
  848. if self.nested_groups:
  849. self.push_group(self.inventory, 'instances', replication_group['ReplicationGroupId'])
  850. # Inventory: Group by region
  851. if self.group_by_region:
  852. self.push(self.inventory, region, dest)
  853. if self.nested_groups:
  854. self.push_group(self.inventory, 'regions', region)
  855. # Inventory: Group by availability zone (doesn't apply to replication groups)
  856. # Inventory: Group by node type (doesn't apply to replication groups)
  857. # Inventory: Group by VPC (information not available in the current
  858. # AWS API version for replication groups
  859. # Inventory: Group by security group (doesn't apply to replication groups)
  860. # Check this value in cluster level
  861. # Inventory: Group by engine (replication groups are always Redis)
  862. if self.group_by_elasticache_engine:
  863. self.push(self.inventory, 'elasticache_redis', dest)
  864. if self.nested_groups:
  865. self.push_group(self.inventory, 'elasticache_engines', 'redis')
  866. # Global Tag: all ElastiCache clusters
  867. self.push(self.inventory, 'elasticache_replication_groups', replication_group['ReplicationGroupId'])
  868. host_info = self.get_host_info_dict_from_describe_dict(replication_group)
  869. self.inventory["_meta"]["hostvars"][dest] = host_info
  870. def get_route53_records(self):
  871. ''' Get and store the map of resource records to domain names that
  872. point to them. '''
  873. r53_conn = route53.Route53Connection()
  874. all_zones = r53_conn.get_zones()
  875. route53_zones = [ zone for zone in all_zones if zone.name[:-1]
  876. not in self.route53_excluded_zones ]
  877. self.route53_records = {}
  878. for zone in route53_zones:
  879. rrsets = r53_conn.get_all_rrsets(zone.id)
  880. for record_set in rrsets:
  881. record_name = record_set.name
  882. if record_name.endswith('.'):
  883. record_name = record_name[:-1]
  884. for resource in record_set.resource_records:
  885. self.route53_records.setdefault(resource, set())
  886. self.route53_records[resource].add(record_name)
  887. def get_instance_route53_names(self, instance):
  888. ''' Check if an instance is referenced in the records we have from
  889. Route53. If it is, return the list of domain names pointing to said
  890. instance. If nothing points to it, return an empty list. '''
  891. instance_attributes = [ 'public_dns_name', 'private_dns_name',
  892. 'ip_address', 'private_ip_address' ]
  893. name_list = set()
  894. for attrib in instance_attributes:
  895. try:
  896. value = getattr(instance, attrib)
  897. except AttributeError:
  898. continue
  899. if value in self.route53_records:
  900. name_list.update(self.route53_records[value])
  901. return list(name_list)
  902. def get_host_info_dict_from_instance(self, instance):
  903. instance_vars = {}
  904. for key in vars(instance):
  905. value = getattr(instance, key)
  906. key = self.to_safe('ec2_' + key)
  907. # Handle complex types
  908. # state/previous_state changed to properties in boto in https://github.com/boto/boto/commit/a23c379837f698212252720d2af8dec0325c9518
  909. if key == 'ec2__state':
  910. instance_vars['ec2_state'] = instance.state or ''
  911. instance_vars['ec2_state_code'] = instance.state_code
  912. elif key == 'ec2__previous_state':
  913. instance_vars['ec2_previous_state'] = instance.previous_state or ''
  914. instance_vars['ec2_previous_state_code'] = instance.previous_state_code
  915. elif type(value) in [int, bool]:
  916. instance_vars[key] = value
  917. elif isinstance(value, six.string_types):
  918. instance_vars[key] = value.strip()
  919. elif type(value) == type(None):
  920. instance_vars[key] = ''
  921. elif key == 'ec2_region':
  922. instance_vars[key] = value.name
  923. elif key == 'ec2__placement':
  924. instance_vars['ec2_placement'] = value.zone
  925. elif key == 'ec2_tags':
  926. for k, v in value.items():
  927. key = self.to_safe('ec2_tag_' + k)
  928. instance_vars[key] = v
  929. elif key == 'ec2_groups':
  930. group_ids = []
  931. group_names = []
  932. for group in value:
  933. group_ids.append(group.id)
  934. group_names.append(group.name)
  935. instance_vars["ec2_security_group_ids"] = ','.join([str(i) for i in group_ids])
  936. instance_vars["ec2_security_group_names"] = ','.join([str(i) for i in group_names])
  937. else:
  938. pass
  939. # TODO Product codes if someone finds them useful
  940. #print key
  941. #print type(value)
  942. #print value
  943. return instance_vars
  944. def get_host_info_dict_from_describe_dict(self, describe_dict):
  945. ''' Parses the dictionary returned by the API call into a flat list
  946. of parameters. This method should be used only when 'describe' is
  947. used directly because Boto doesn't provide specific classes. '''
  948. # I really don't agree with prefixing everything with 'ec2'
  949. # because EC2, RDS and ElastiCache are different services.
  950. # I'm just following the pattern used until now to not break any
  951. # compatibility.
  952. host_info = {}
  953. for key in describe_dict:
  954. value = describe_dict[key]
  955. key = self.to_safe('ec2_' + self.uncammelize(key))
  956. # Handle complex types
  957. # Target: Memcached Cache Clusters
  958. if key == 'ec2_configuration_endpoint' and value:
  959. host_info['ec2_configuration_endpoint_address'] = value['Address']
  960. host_info['ec2_configuration_endpoint_port'] = value['Port']
  961. # Target: Cache Nodes and Redis Cache Clusters (single node)
  962. if key == 'ec2_endpoint' and value:
  963. host_info['ec2_endpoint_address'] = value['Address']
  964. host_info['ec2_endpoint_port'] = value['Port']
  965. # Target: Redis Replication Groups
  966. if key == 'ec2_node_groups' and value:
  967. host_info['ec2_endpoint_address'] = value[0]['PrimaryEndpoint']['Address']
  968. host_info['ec2_endpoint_port'] = value[0]['PrimaryEndpoint']['Port']
  969. replica_count = 0
  970. for node in value[0]['NodeGroupMembers']:
  971. if node['CurrentRole'] == 'primary':
  972. host_info['ec2_primary_cluster_address'] = node['ReadEndpoint']['Address']
  973. host_info['ec2_primary_cluster_port'] = node['ReadEndpoint']['Port']
  974. host_info['ec2_primary_cluster_id'] = node['CacheClusterId']
  975. elif node['CurrentRole'] == 'replica':
  976. host_info['ec2_replica_cluster_address_'+ str(replica_count)] = node['ReadEndpoint']['Address']
  977. host_info['ec2_replica_cluster_port_'+ str(replica_count)] = node['ReadEndpoint']['Port']
  978. host_info['ec2_replica_cluster_id_'+ str(replica_count)] = node['CacheClusterId']
  979. replica_count += 1
  980. # Target: Redis Replication Groups
  981. if key == 'ec2_member_clusters' and value:
  982. host_info['ec2_member_clusters'] = ','.join([str(i) for i in value])
  983. # Target: All Cache Clusters
  984. elif key == 'ec2_cache_parameter_group':
  985. host_info["ec2_cache_node_ids_to_reboot"] = ','.join([str(i) for i in value['CacheNodeIdsToReboot']])
  986. host_info['ec2_cache_parameter_group_name'] = value['CacheParameterGroupName']
  987. host_info['ec2_cache_parameter_apply_status'] = value['ParameterApplyStatus']
  988. # Target: Almost everything
  989. elif key == 'ec2_security_groups':
  990. # Skip if SecurityGroups is None
  991. # (it is possible to have the key defined but no value in it).
  992. if value is not None:
  993. sg_ids = []
  994. for sg in value:
  995. sg_ids.append(sg['SecurityGroupId'])
  996. host_info["ec2_security_group_ids"] = ','.join([str(i) for i in sg_ids])
  997. # Target: Everything
  998. # Preserve booleans and integers
  999. elif type(value) in [int, bool]:
  1000. host_info[key] = value
  1001. # Target: Everything
  1002. # Sanitize string values
  1003. elif isinstance(value, six.string_types):
  1004. host_info[key] = value.strip()
  1005. # Target: Everything
  1006. # Replace None by an empty string
  1007. elif type(value) == type(None):
  1008. host_info[key] = ''
  1009. else:
  1010. # Remove non-processed complex types
  1011. pass
  1012. return host_info
  1013. def get_host_info(self):
  1014. ''' Get variables about a specific host '''
  1015. if len(self.index) == 0:
  1016. # Need to load index from cache
  1017. self.load_index_from_cache()
  1018. if not self.args.host in self.index:
  1019. # try updating the cache
  1020. self.do_api_calls_update_cache()
  1021. if not self.args.host in self.index:
  1022. # host might not exist anymore
  1023. return self.json_format_dict({}, True)
  1024. (region, instance_id) = self.index[self.args.host]
  1025. instance = self.get_instance(region, instance_id)
  1026. return self.json_format_dict(self.get_host_info_dict_from_instance(instance), True)
  1027. def push(self, my_dict, key, element):
  1028. ''' Push an element onto an array that may not have been defined in
  1029. the dict '''
  1030. group_info = my_dict.setdefault(key, [])
  1031. if isinstance(group_info, dict):
  1032. host_list = group_info.setdefault('hosts', [])
  1033. host_list.append(element)
  1034. else:
  1035. group_info.append(element)
  1036. def push_group(self, my_dict, key, element):
  1037. ''' Push a group as a child of another group. '''
  1038. parent_group = my_dict.setdefault(key, {})
  1039. if not isinstance(parent_group, dict):
  1040. parent_group = my_dict[key] = {'hosts': parent_group}
  1041. child_groups = parent_group.setdefault('children', [])
  1042. if element not in child_groups:
  1043. child_groups.append(element)
  1044. def get_inventory_from_cache(self):
  1045. ''' Reads the inventory from the cache file and returns it as a JSON
  1046. object '''
  1047. cache = open(self.cache_path_cache, 'r')
  1048. json_inventory = cache.read()
  1049. return json_inventory
  1050. def load_index_from_cache(self):
  1051. ''' Reads the index from the cache file sets self.index '''
  1052. cache = open(self.cache_path_index, 'r')
  1053. json_index = cache.read()
  1054. self.index = json.loads(json_index)
  1055. def write_to_cache(self, data, filename):
  1056. ''' Writes data in JSON format to a file '''
  1057. json_data = self.json_format_dict(data, True)
  1058. cache = open(filename, 'w')
  1059. cache.write(json_data)
  1060. cache.close()
  1061. def uncammelize(self, key):
  1062. temp = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', key)
  1063. return re.sub('([a-z0-9])([A-Z])', r'\1_\2', temp).lower()
  1064. def to_safe(self, word):
  1065. ''' Converts 'bad' characters in a string to underscores so they can be used as Ansible groups '''
  1066. regex = "[^A-Za-z0-9\_"
  1067. if not self.replace_dash_in_groups:
  1068. regex += "\-"
  1069. return re.sub(regex + "]", "_", word)
  1070. def json_format_dict(self, data, pretty=False):
  1071. ''' Converts a dict to a JSON object and dumps it as a formatted
  1072. string '''
  1073. if pretty:
  1074. return json.dumps(data, sort_keys=True, indent=2)
  1075. else:
  1076. return json.dumps(data)
  1077. # Run the script
  1078. Ec2Inventory()