From bfe7f92cb4a1a796f1d8d42e10d4ea1d13b9a97f Mon Sep 17 00:00:00 2001 From: Rudy Attias Date: Thu, 24 Nov 2016 13:50:58 +0200 Subject: [PATCH] fix missing tags in call to boto_rds.exists which caused a shift of parameters (keyid=profile) --- salt/states/boto_rds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/states/boto_rds.py b/salt/states/boto_rds.py index 56a82381dd..56fb310770 100644 --- a/salt/states/boto_rds.py +++ b/salt/states/boto_rds.py @@ -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']: