Fix tags for resource in ListTagsForResource (#3931)

* Fix tags for resource in ListTagsForResource

* Fix review comments

* Fix tests
This commit is contained in:
usmangani1 2021-05-15 00:35:40 +05:30 committed by GitHub
commit 58fd4aeaae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View file

@ -1331,6 +1331,11 @@ class SimpleSystemManagerBackend(BaseBackend):
tags or [],
)
)
if tags:
tags = {t["Key"]: t["Value"] for t in tags}
self.add_tags_to_resource(name, "Parameter", tags)
return version
def add_tags_to_resource(self, resource_type, resource_id, tags):