mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
boto_efs_fix_tags: Fix #42688 invalid type for parameter tags
Change-Id: Ibab5417074b1ac98ee025c421d04674070745edf
This commit is contained in:
parent
4c1d931654
commit
157fb28851
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue