ec2.py 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. #!/usr/bin/env python2
  2. '''
  3. EC2 external inventory script
  4. =================================
  5. Generates inventory that Ansible can understand by making API request to
  6. AWS EC2 using the Boto library.
  7. NOTE: This script assumes Ansible is being executed where the environment
  8. variables needed for Boto have already been set:
  9. export AWS_ACCESS_KEY_ID='AK123'
  10. export AWS_SECRET_ACCESS_KEY='abc123'
  11. This script also assumes there is an ec2.ini file alongside it. To specify a
  12. different path to ec2.ini, define the EC2_INI_PATH environment variable:
  13. export EC2_INI_PATH=/path/to/my_ec2.ini
  14. If you're using eucalyptus you need to set the above variables and
  15. you need to define:
  16. export EC2_URL=http://hostname_of_your_cc:port/services/Eucalyptus
  17. For more details, see: http://docs.pythonboto.org/en/latest/boto_config_tut.html
  18. When run against a specific host, this script returns the following variables:
  19. - ec2_ami_launch_index
  20. - ec2_architecture
  21. - ec2_association
  22. - ec2_attachTime
  23. - ec2_attachment
  24. - ec2_attachmentId
  25. - ec2_client_token
  26. - ec2_deleteOnTermination
  27. - ec2_description
  28. - ec2_deviceIndex
  29. - ec2_dns_name
  30. - ec2_eventsSet
  31. - ec2_group_name
  32. - ec2_hypervisor
  33. - ec2_id
  34. - ec2_image_id
  35. - ec2_instanceState
  36. - ec2_instance_type
  37. - ec2_ipOwnerId
  38. - ec2_ip_address
  39. - ec2_item
  40. - ec2_kernel
  41. - ec2_key_name
  42. - ec2_launch_time
  43. - ec2_monitored
  44. - ec2_monitoring
  45. - ec2_networkInterfaceId
  46. - ec2_ownerId
  47. - ec2_persistent
  48. - ec2_placement
  49. - ec2_platform
  50. - ec2_previous_state
  51. - ec2_private_dns_name
  52. - ec2_private_ip_address
  53. - ec2_publicIp
  54. - ec2_public_dns_name
  55. - ec2_ramdisk
  56. - ec2_reason
  57. - ec2_region
  58. - ec2_requester_id
  59. - ec2_root_device_name
  60. - ec2_root_device_type
  61. - ec2_security_group_ids
  62. - ec2_security_group_names
  63. - ec2_shutdown_state
  64. - ec2_sourceDestCheck
  65. - ec2_spot_instance_request_id
  66. - ec2_state
  67. - ec2_state_code
  68. - ec2_state_reason
  69. - ec2_status
  70. - ec2_subnet_id
  71. - ec2_tenancy
  72. - ec2_virtualization_type
  73. - ec2_vpc_id
  74. These variables are pulled out of a boto.ec2.instance object. There is a lack of
  75. consistency with variable spellings (camelCase and underscores) since this
  76. just loops through all variables the object exposes. It is preferred to use the
  77. ones with underscores when multiple exist.
  78. In addition, if an instance has AWS Tags associated with it, each tag is a new
  79. variable named:
  80. - ec2_tag_[Key] = [Value]
  81. Security groups are comma-separated in 'ec2_security_group_ids' and
  82. 'ec2_security_group_names'.
  83. '''
  84. # (c) 2012, Peter Sankauskas
  85. #
  86. # This file is part of Ansible,
  87. #
  88. # Ansible is free software: you can redistribute it and/or modify
  89. # it under the terms of the GNU General Public License as published by
  90. # the Free Software Foundation, either version 3 of the License, or
  91. # (at your option) any later version.
  92. #
  93. # Ansible is distributed in the hope that it will be useful,
  94. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  95. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  96. # GNU General Public License for more details.
  97. #
  98. # You should have received a copy of the GNU General Public License
  99. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
  100. ######################################################################
  101. import sys
  102. import os
  103. import argparse
  104. import re
  105. from time import time
  106. import boto
  107. from boto import ec2
  108. from boto import rds
  109. from boto import route53
  110. import ConfigParser
  111. from collections import defaultdict
  112. try:
  113. import json
  114. except ImportError:
  115. import simplejson as json
  116. class Ec2Inventory(object):
  117. def _empty_inventory(self):
  118. return {"_meta" : {"hostvars" : {}}}
  119. def __init__(self):
  120. ''' Main execution path '''
  121. # Inventory grouped by instance IDs, tags, security groups, regions,
  122. # and availability zones
  123. self.inventory = self._empty_inventory()
  124. # Index of hostname (address) to instance ID
  125. self.index = {}
  126. # Read settings and parse CLI arguments
  127. self.read_settings()
  128. self.parse_cli_args()
  129. # Cache
  130. if self.args.refresh_cache:
  131. self.do_api_calls_update_cache()
  132. elif not self.is_cache_valid():
  133. self.do_api_calls_update_cache()
  134. # Data to print
  135. if self.args.host:
  136. data_to_print = self.get_host_info()
  137. elif self.args.list:
  138. # Display list of instances for inventory
  139. if self.inventory == self._empty_inventory():
  140. data_to_print = self.get_inventory_from_cache()
  141. else:
  142. data_to_print = self.json_format_dict(self.inventory, True)
  143. print data_to_print
  144. def is_cache_valid(self):
  145. ''' Determines if the cache files have expired, or if it is still valid '''
  146. if os.path.isfile(self.cache_path_cache):
  147. mod_time = os.path.getmtime(self.cache_path_cache)
  148. current_time = time()
  149. if (mod_time + self.cache_max_age) > current_time:
  150. if os.path.isfile(self.cache_path_index):
  151. return True
  152. return False
  153. def read_settings(self):
  154. ''' Reads the settings from the ec2.ini file '''
  155. config = ConfigParser.SafeConfigParser()
  156. ec2_default_ini_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'ec2.ini')
  157. ec2_ini_path = os.environ.get('EC2_INI_PATH', ec2_default_ini_path)
  158. config.read(ec2_ini_path)
  159. # is eucalyptus?
  160. self.eucalyptus_host = None
  161. self.eucalyptus = False
  162. if config.has_option('ec2', 'eucalyptus'):
  163. self.eucalyptus = config.getboolean('ec2', 'eucalyptus')
  164. if self.eucalyptus and config.has_option('ec2', 'eucalyptus_host'):
  165. self.eucalyptus_host = config.get('ec2', 'eucalyptus_host')
  166. # Regions
  167. self.regions = []
  168. configRegions = config.get('ec2', 'regions')
  169. configRegions_exclude = config.get('ec2', 'regions_exclude')
  170. if (configRegions == 'all'):
  171. if self.eucalyptus_host:
  172. self.regions.append(boto.connect_euca(host=self.eucalyptus_host).region.name)
  173. else:
  174. for regionInfo in ec2.regions():
  175. if regionInfo.name not in configRegions_exclude:
  176. self.regions.append(regionInfo.name)
  177. else:
  178. self.regions = configRegions.split(",")
  179. # Destination addresses
  180. self.destination_variable = config.get('ec2', 'destination_variable')
  181. self.vpc_destination_variable = config.get('ec2', 'vpc_destination_variable')
  182. if config.has_option('ec2', 'destination_format') and \
  183. config.has_option('ec2', 'destination_format_tags'):
  184. self.destination_format = config.get('ec2', 'destination_format')
  185. self.destination_format_tags = config.get('ec2', 'destination_format_tags').split(',')
  186. else:
  187. self.destination_format = None
  188. self.destination_format_tags = None
  189. # Route53
  190. self.route53_enabled = config.getboolean('ec2', 'route53')
  191. self.route53_excluded_zones = []
  192. if config.has_option('ec2', 'route53_excluded_zones'):
  193. self.route53_excluded_zones.extend(
  194. config.get('ec2', 'route53_excluded_zones', '').split(','))
  195. # Include RDS instances?
  196. self.rds_enabled = True
  197. if config.has_option('ec2', 'rds'):
  198. self.rds_enabled = config.getboolean('ec2', 'rds')
  199. # Return all EC2 and RDS instances (if RDS is enabled)
  200. if config.has_option('ec2', 'all_instances'):
  201. self.all_instances = config.getboolean('ec2', 'all_instances')
  202. else:
  203. self.all_instances = False
  204. if config.has_option('ec2', 'all_rds_instances') and self.rds_enabled:
  205. self.all_rds_instances = config.getboolean('ec2', 'all_rds_instances')
  206. else:
  207. self.all_rds_instances = False
  208. # Cache related
  209. cache_dir = os.path.expanduser(config.get('ec2', 'cache_path'))
  210. if not os.path.exists(cache_dir):
  211. os.makedirs(cache_dir)
  212. self.cache_path_cache = cache_dir + "/ansible-ec2.cache"
  213. self.cache_path_index = cache_dir + "/ansible-ec2.index"
  214. self.cache_max_age = config.getint('ec2', 'cache_max_age')
  215. # Configure nested groups instead of flat namespace.
  216. if config.has_option('ec2', 'nested_groups'):
  217. self.nested_groups = config.getboolean('ec2', 'nested_groups')
  218. else:
  219. self.nested_groups = False
  220. # Configure which groups should be created.
  221. group_by_options = [
  222. 'group_by_instance_id',
  223. 'group_by_region',
  224. 'group_by_availability_zone',
  225. 'group_by_ami_id',
  226. 'group_by_instance_type',
  227. 'group_by_key_pair',
  228. 'group_by_vpc_id',
  229. 'group_by_security_group',
  230. 'group_by_tag_keys',
  231. 'group_by_tag_none',
  232. 'group_by_route53_names',
  233. 'group_by_rds_engine',
  234. 'group_by_rds_parameter_group',
  235. ]
  236. for option in group_by_options:
  237. if config.has_option('ec2', option):
  238. setattr(self, option, config.getboolean('ec2', option))
  239. else:
  240. setattr(self, option, True)
  241. # Do we need to just include hosts that match a pattern?
  242. try:
  243. pattern_include = config.get('ec2', 'pattern_include')
  244. if pattern_include and len(pattern_include) > 0:
  245. self.pattern_include = re.compile(pattern_include)
  246. else:
  247. self.pattern_include = None
  248. except ConfigParser.NoOptionError, e:
  249. self.pattern_include = None
  250. # Do we need to exclude hosts that match a pattern?
  251. try:
  252. pattern_exclude = config.get('ec2', 'pattern_exclude');
  253. if pattern_exclude and len(pattern_exclude) > 0:
  254. self.pattern_exclude = re.compile(pattern_exclude)
  255. else:
  256. self.pattern_exclude = None
  257. except ConfigParser.NoOptionError, e:
  258. self.pattern_exclude = None
  259. # Instance filters (see boto and EC2 API docs). Ignore invalid filters.
  260. self.ec2_instance_filters = defaultdict(list)
  261. if config.has_option('ec2', 'instance_filters'):
  262. for instance_filter in config.get('ec2', 'instance_filters', '').split(','):
  263. instance_filter = instance_filter.strip()
  264. if not instance_filter or '=' not in instance_filter:
  265. continue
  266. filter_key, filter_value = [x.strip() for x in instance_filter.split('=', 1)]
  267. if not filter_key:
  268. continue
  269. self.ec2_instance_filters[filter_key].append(filter_value)
  270. def parse_cli_args(self):
  271. ''' Command line argument processing '''
  272. parser = argparse.ArgumentParser(description='Produce an Ansible Inventory file based on EC2')
  273. parser.add_argument('--list', action='store_true', default=True,
  274. help='List instances (default: True)')
  275. parser.add_argument('--host', action='store',
  276. help='Get all the variables about a specific instance')
  277. parser.add_argument('--refresh-cache', action='store_true', default=False,
  278. help='Force refresh of cache by making API requests to EC2 (default: False - use cache files)')
  279. self.args = parser.parse_args()
  280. def do_api_calls_update_cache(self):
  281. ''' Do API calls to each region, and save data in cache files '''
  282. if self.route53_enabled:
  283. self.get_route53_records()
  284. for region in self.regions:
  285. self.get_instances_by_region(region)
  286. if self.rds_enabled:
  287. self.get_rds_instances_by_region(region)
  288. self.write_to_cache(self.inventory, self.cache_path_cache)
  289. self.write_to_cache(self.index, self.cache_path_index)
  290. def get_instances_by_region(self, region):
  291. ''' Makes an AWS EC2 API call to the list of instances in a particular
  292. region '''
  293. try:
  294. if self.eucalyptus:
  295. conn = boto.connect_euca(host=self.eucalyptus_host)
  296. conn.APIVersion = '2010-08-31'
  297. else:
  298. conn = ec2.connect_to_region(region)
  299. # connect_to_region will fail "silently" by returning None if the region name is wrong or not supported
  300. if conn is None:
  301. print("region name: %s likely not supported, or AWS is down. connection to region failed." % region)
  302. sys.exit(1)
  303. reservations = []
  304. if self.ec2_instance_filters:
  305. for filter_key, filter_values in self.ec2_instance_filters.iteritems():
  306. reservations.extend(conn.get_all_instances(filters = { filter_key : filter_values }))
  307. else:
  308. reservations = conn.get_all_instances()
  309. for reservation in reservations:
  310. for instance in reservation.instances:
  311. self.add_instance(instance, region)
  312. except boto.exception.BotoServerError, e:
  313. if not self.eucalyptus:
  314. print "Looks like AWS is down again:"
  315. print e
  316. sys.exit(1)
  317. def get_rds_instances_by_region(self, region):
  318. ''' Makes an AWS API call to the list of RDS instances in a particular
  319. region '''
  320. try:
  321. conn = rds.connect_to_region(region)
  322. if conn:
  323. instances = conn.get_all_dbinstances()
  324. for instance in instances:
  325. self.add_rds_instance(instance, region)
  326. except boto.exception.BotoServerError, e:
  327. if not e.reason == "Forbidden":
  328. print "Looks like AWS RDS is down: "
  329. print e
  330. sys.exit(1)
  331. def get_instance(self, region, instance_id):
  332. ''' Gets details about a specific instance '''
  333. if self.eucalyptus:
  334. conn = boto.connect_euca(self.eucalyptus_host)
  335. conn.APIVersion = '2010-08-31'
  336. else:
  337. conn = ec2.connect_to_region(region)
  338. # connect_to_region will fail "silently" by returning None if the region name is wrong or not supported
  339. if conn is None:
  340. print("region name: %s likely not supported, or AWS is down. connection to region failed." % region)
  341. sys.exit(1)
  342. reservations = conn.get_all_instances([instance_id])
  343. for reservation in reservations:
  344. for instance in reservation.instances:
  345. return instance
  346. def add_instance(self, instance, region):
  347. ''' Adds an instance to the inventory and index, as long as it is
  348. addressable '''
  349. # Only want running instances unless all_instances is True
  350. if not self.all_instances and instance.state != 'running':
  351. return
  352. # Select the best destination address
  353. if self.destination_format and self.destination_format_tags:
  354. dest = self.destination_format.format(*[ getattr(instance, 'tags').get(tag, 'nil') for tag in self.destination_format_tags ])
  355. elif instance.subnet_id:
  356. dest = getattr(instance, self.vpc_destination_variable, None)
  357. if dest is None:
  358. dest = getattr(instance, 'tags').get(self.vpc_destination_variable, None)
  359. else:
  360. dest = getattr(instance, self.destination_variable, None)
  361. if dest is None:
  362. dest = getattr(instance, 'tags').get(self.destination_variable, None)
  363. if not dest:
  364. # Skip instances we cannot address (e.g. private VPC subnet)
  365. return
  366. # if we only want to include hosts that match a pattern, skip those that don't
  367. if self.pattern_include and not self.pattern_include.match(dest):
  368. return
  369. # if we need to exclude hosts that match a pattern, skip those
  370. if self.pattern_exclude and self.pattern_exclude.match(dest):
  371. return
  372. # Add to index
  373. self.index[dest] = [region, instance.id]
  374. # Inventory: Group by instance ID (always a group of 1)
  375. if self.group_by_instance_id:
  376. self.inventory[instance.id] = [dest]
  377. if self.nested_groups:
  378. self.push_group(self.inventory, 'instances', instance.id)
  379. # Inventory: Group by region
  380. if self.group_by_region:
  381. self.push(self.inventory, region, dest)
  382. if self.nested_groups:
  383. self.push_group(self.inventory, 'regions', region)
  384. # Inventory: Group by availability zone
  385. if self.group_by_availability_zone:
  386. self.push(self.inventory, instance.placement, dest)
  387. if self.nested_groups:
  388. if self.group_by_region:
  389. self.push_group(self.inventory, region, instance.placement)
  390. self.push_group(self.inventory, 'zones', instance.placement)
  391. # Inventory: Group by Amazon Machine Image (AMI) ID
  392. if self.group_by_ami_id:
  393. ami_id = self.to_safe(instance.image_id)
  394. self.push(self.inventory, ami_id, dest)
  395. if self.nested_groups:
  396. self.push_group(self.inventory, 'images', ami_id)
  397. # Inventory: Group by instance type
  398. if self.group_by_instance_type:
  399. type_name = self.to_safe('type_' + instance.instance_type)
  400. self.push(self.inventory, type_name, dest)
  401. if self.nested_groups:
  402. self.push_group(self.inventory, 'types', type_name)
  403. # Inventory: Group by key pair
  404. if self.group_by_key_pair and instance.key_name:
  405. key_name = self.to_safe('key_' + instance.key_name)
  406. self.push(self.inventory, key_name, dest)
  407. if self.nested_groups:
  408. self.push_group(self.inventory, 'keys', key_name)
  409. # Inventory: Group by VPC
  410. if self.group_by_vpc_id and instance.vpc_id:
  411. vpc_id_name = self.to_safe('vpc_id_' + instance.vpc_id)
  412. self.push(self.inventory, vpc_id_name, dest)
  413. if self.nested_groups:
  414. self.push_group(self.inventory, 'vpcs', vpc_id_name)
  415. # Inventory: Group by security group
  416. if self.group_by_security_group:
  417. try:
  418. for group in instance.groups:
  419. key = self.to_safe("security_group_" + group.name)
  420. self.push(self.inventory, key, dest)
  421. if self.nested_groups:
  422. self.push_group(self.inventory, 'security_groups', key)
  423. except AttributeError:
  424. print 'Package boto seems a bit older.'
  425. print 'Please upgrade boto >= 2.3.0.'
  426. sys.exit(1)
  427. # Inventory: Group by tag keys
  428. if self.group_by_tag_keys:
  429. for k, v in instance.tags.iteritems():
  430. key = self.to_safe("tag_" + k + "=" + v)
  431. self.push(self.inventory, key, dest)
  432. if self.nested_groups:
  433. self.push_group(self.inventory, 'tags', self.to_safe("tag_" + k))
  434. self.push_group(self.inventory, self.to_safe("tag_" + k), key)
  435. # Inventory: Group by Route53 domain names if enabled
  436. if self.route53_enabled and self.group_by_route53_names:
  437. route53_names = self.get_instance_route53_names(instance)
  438. for name in route53_names:
  439. self.push(self.inventory, name, dest)
  440. if self.nested_groups:
  441. self.push_group(self.inventory, 'route53', name)
  442. # Global Tag: instances without tags
  443. if self.group_by_tag_none and len(instance.tags) == 0:
  444. self.push(self.inventory, 'tag_none', dest)
  445. if self.nested_groups:
  446. self.push_group(self.inventory, 'tags', 'tag_none')
  447. # Global Tag: tag all EC2 instances
  448. self.push(self.inventory, 'ec2', dest)
  449. self.inventory["_meta"]["hostvars"][dest] = self.get_host_info_dict_from_instance(instance)
  450. def add_rds_instance(self, instance, region):
  451. ''' Adds an RDS instance to the inventory and index, as long as it is
  452. addressable '''
  453. # Only want available instances unless all_rds_instances is True
  454. if not self.all_rds_instances and instance.status != 'available':
  455. return
  456. # Select the best destination address
  457. dest = instance.endpoint[0]
  458. if not dest:
  459. # Skip instances we cannot address (e.g. private VPC subnet)
  460. return
  461. # Add to index
  462. self.index[dest] = [region, instance.id]
  463. # Inventory: Group by instance ID (always a group of 1)
  464. if self.group_by_instance_id:
  465. self.inventory[instance.id] = [dest]
  466. if self.nested_groups:
  467. self.push_group(self.inventory, 'instances', instance.id)
  468. # Inventory: Group by region
  469. if self.group_by_region:
  470. self.push(self.inventory, region, dest)
  471. if self.nested_groups:
  472. self.push_group(self.inventory, 'regions', region)
  473. # Inventory: Group by availability zone
  474. if self.group_by_availability_zone:
  475. self.push(self.inventory, instance.availability_zone, dest)
  476. if self.nested_groups:
  477. if self.group_by_region:
  478. self.push_group(self.inventory, region, instance.availability_zone)
  479. self.push_group(self.inventory, 'zones', instance.availability_zone)
  480. # Inventory: Group by instance type
  481. if self.group_by_instance_type:
  482. type_name = self.to_safe('type_' + instance.instance_class)
  483. self.push(self.inventory, type_name, dest)
  484. if self.nested_groups:
  485. self.push_group(self.inventory, 'types', type_name)
  486. # Inventory: Group by VPC
  487. if self.group_by_vpc_id and instance.subnet_group and instance.subnet_group.vpc_id:
  488. vpc_id_name = self.to_safe('vpc_id_' + instance.subnet_group.vpc_id)
  489. self.push(self.inventory, vpc_id_name, dest)
  490. if self.nested_groups:
  491. self.push_group(self.inventory, 'vpcs', vpc_id_name)
  492. # Inventory: Group by security group
  493. if self.group_by_security_group:
  494. try:
  495. if instance.security_group:
  496. key = self.to_safe("security_group_" + instance.security_group.name)
  497. self.push(self.inventory, key, dest)
  498. if self.nested_groups:
  499. self.push_group(self.inventory, 'security_groups', key)
  500. except AttributeError:
  501. print 'Package boto seems a bit older.'
  502. print 'Please upgrade boto >= 2.3.0.'
  503. sys.exit(1)
  504. # Inventory: Group by engine
  505. if self.group_by_rds_engine:
  506. self.push(self.inventory, self.to_safe("rds_" + instance.engine), dest)
  507. if self.nested_groups:
  508. self.push_group(self.inventory, 'rds_engines', self.to_safe("rds_" + instance.engine))
  509. # Inventory: Group by parameter group
  510. if self.group_by_rds_parameter_group:
  511. self.push(self.inventory, self.to_safe("rds_parameter_group_" + instance.parameter_group.name), dest)
  512. if self.nested_groups:
  513. self.push_group(self.inventory, 'rds_parameter_groups', self.to_safe("rds_parameter_group_" + instance.parameter_group.name))
  514. # Global Tag: all RDS instances
  515. self.push(self.inventory, 'rds', dest)
  516. self.inventory["_meta"]["hostvars"][dest] = self.get_host_info_dict_from_instance(instance)
  517. def get_route53_records(self):
  518. ''' Get and store the map of resource records to domain names that
  519. point to them. '''
  520. r53_conn = route53.Route53Connection()
  521. all_zones = r53_conn.get_zones()
  522. route53_zones = [ zone for zone in all_zones if zone.name[:-1]
  523. not in self.route53_excluded_zones ]
  524. self.route53_records = {}
  525. for zone in route53_zones:
  526. rrsets = r53_conn.get_all_rrsets(zone.id)
  527. for record_set in rrsets:
  528. record_name = record_set.name
  529. if record_name.endswith('.'):
  530. record_name = record_name[:-1]
  531. for resource in record_set.resource_records:
  532. self.route53_records.setdefault(resource, set())
  533. self.route53_records[resource].add(record_name)
  534. def get_instance_route53_names(self, instance):
  535. ''' Check if an instance is referenced in the records we have from
  536. Route53. If it is, return the list of domain names pointing to said
  537. instance. If nothing points to it, return an empty list. '''
  538. instance_attributes = [ 'public_dns_name', 'private_dns_name',
  539. 'ip_address', 'private_ip_address' ]
  540. name_list = set()
  541. for attrib in instance_attributes:
  542. try:
  543. value = getattr(instance, attrib)
  544. except AttributeError:
  545. continue
  546. if value in self.route53_records:
  547. name_list.update(self.route53_records[value])
  548. return list(name_list)
  549. def get_host_info_dict_from_instance(self, instance):
  550. instance_vars = {}
  551. for key in vars(instance):
  552. value = getattr(instance, key)
  553. key = self.to_safe('ec2_' + key)
  554. # Handle complex types
  555. # state/previous_state changed to properties in boto in https://github.com/boto/boto/commit/a23c379837f698212252720d2af8dec0325c9518
  556. if key == 'ec2__state':
  557. instance_vars['ec2_state'] = instance.state or ''
  558. instance_vars['ec2_state_code'] = instance.state_code
  559. elif key == 'ec2__previous_state':
  560. instance_vars['ec2_previous_state'] = instance.previous_state or ''
  561. instance_vars['ec2_previous_state_code'] = instance.previous_state_code
  562. elif type(value) in [int, bool]:
  563. instance_vars[key] = value
  564. elif type(value) in [str, unicode]:
  565. instance_vars[key] = value.strip()
  566. elif type(value) == type(None):
  567. instance_vars[key] = ''
  568. elif key == 'ec2_region':
  569. instance_vars[key] = value.name
  570. elif key == 'ec2__placement':
  571. instance_vars['ec2_placement'] = value.zone
  572. elif key == 'ec2_tags':
  573. for k, v in value.iteritems():
  574. key = self.to_safe('ec2_tag_' + k)
  575. instance_vars[key] = v
  576. elif key == 'ec2_groups':
  577. group_ids = []
  578. group_names = []
  579. for group in value:
  580. group_ids.append(group.id)
  581. group_names.append(group.name)
  582. instance_vars["ec2_security_group_ids"] = ','.join([str(i) for i in group_ids])
  583. instance_vars["ec2_security_group_names"] = ','.join([str(i) for i in group_names])
  584. else:
  585. pass
  586. # TODO Product codes if someone finds them useful
  587. #print key
  588. #print type(value)
  589. #print value
  590. return instance_vars
  591. def get_host_info(self):
  592. ''' Get variables about a specific host '''
  593. if len(self.index) == 0:
  594. # Need to load index from cache
  595. self.load_index_from_cache()
  596. if not self.args.host in self.index:
  597. # try updating the cache
  598. self.do_api_calls_update_cache()
  599. if not self.args.host in self.index:
  600. # host might not exist anymore
  601. return self.json_format_dict({}, True)
  602. (region, instance_id) = self.index[self.args.host]
  603. instance = self.get_instance(region, instance_id)
  604. return self.json_format_dict(self.get_host_info_dict_from_instance(instance), True)
  605. def push(self, my_dict, key, element):
  606. ''' Push an element onto an array that may not have been defined in
  607. the dict '''
  608. group_info = my_dict.setdefault(key, [])
  609. if isinstance(group_info, dict):
  610. host_list = group_info.setdefault('hosts', [])
  611. host_list.append(element)
  612. else:
  613. group_info.append(element)
  614. def push_group(self, my_dict, key, element):
  615. ''' Push a group as a child of another group. '''
  616. parent_group = my_dict.setdefault(key, {})
  617. if not isinstance(parent_group, dict):
  618. parent_group = my_dict[key] = {'hosts': parent_group}
  619. child_groups = parent_group.setdefault('children', [])
  620. if element not in child_groups:
  621. child_groups.append(element)
  622. def get_inventory_from_cache(self):
  623. ''' Reads the inventory from the cache file and returns it as a JSON
  624. object '''
  625. cache = open(self.cache_path_cache, 'r')
  626. json_inventory = cache.read()
  627. return json_inventory
  628. def load_index_from_cache(self):
  629. ''' Reads the index from the cache file sets self.index '''
  630. cache = open(self.cache_path_index, 'r')
  631. json_index = cache.read()
  632. self.index = json.loads(json_index)
  633. def write_to_cache(self, data, filename):
  634. ''' Writes data in JSON format to a file '''
  635. json_data = self.json_format_dict(data, True)
  636. cache = open(filename, 'w')
  637. cache.write(json_data)
  638. cache.close()
  639. def to_safe(self, word):
  640. ''' Converts 'bad' characters in a string to underscores so they can be
  641. used as Ansible groups '''
  642. return re.sub("[^A-Za-z0-9\-]", "_", word)
  643. def json_format_dict(self, data, pretty=False):
  644. ''' Converts a dict to a JSON object and dumps it as a formatted
  645. string '''
  646. if pretty:
  647. return json.dumps(data, sort_keys=True, indent=2)
  648. else:
  649. return json.dumps(data)
  650. # Run the script
  651. Ec2Inventory()