fix missing tags in call to boto_rds.exists

which caused a shift of parameters (keyid=profile)
This commit is contained in:
Rudy Attias 2016-11-24 13:50:58 +02:00
parent 47d21d9ed2
commit bfe7f92cb4

View File

@ -309,7 +309,7 @@ def present(name,
'changes': {}
}
r = __salt__['boto_rds.exists'](name, region, key, keyid, profile)
r = __salt__['boto_rds.exists'](name, tags, region, key, keyid, profile)
if not r.get('exists'):
if __opts__['test']: