Merge pull request #42689 from hibbert/boto_efs_fix_tags

boto_efs_fix_tags: Fix #42688 invalid type for parameter tags
This commit is contained in:
Mike Place 2017-08-06 12:47:06 -05:00 committed by GitHub
commit 791248e398

View file

@ -158,7 +158,7 @@ def create_file_system(name,
import os
import base64
creation_token = base64.b64encode(os.urandom(46), ['-', '_'])
tags = {"Key": "Name", "Value": name}
tags = [{"Key": "Name", "Value": name}]
client = _get_conn(key=key, keyid=keyid, profile=profile, region=region)