mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 15:21:25 -07:00
Do not filter out RDS instances by default or in INI file to avoid changing current behaviour.
This commit is contained in:
parent
456d2627e8
commit
cc01f7b7f5
2 changed files with 5 additions and 3 deletions
|
@ -223,7 +223,9 @@ class Ec2Inventory(object):
|
|||
config.get('ec2', 'route53_excluded_zones', '').split(','))
|
||||
|
||||
# RDS
|
||||
self.rds_enabled = config.getboolean('ec2', 'rds')
|
||||
self.rds_enabled = True
|
||||
if config.has_option('ec2', 'rds'):
|
||||
self.rds_enabled = config.getboolean('ec2', 'rds')
|
||||
|
||||
# Cache related
|
||||
cache_dir = os.path.expanduser(config.get('ec2', 'cache_path'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue