mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fix missing tags in call to boto_rds.exists
which caused a shift of parameters (keyid=profile)
This commit is contained in:
parent
47d21d9ed2
commit
bfe7f92cb4
1 changed files with 1 additions and 1 deletions
|
@ -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']:
|
||||
|
|
Loading…
Add table
Reference in a new issue