* Fix #31271 - cast all tag values as strings * Replace `str` with `to_native` (cherry picked from commit 154191f56d31e223b178d2333122894d5847db70)
This commit is contained in:
parent
d45f662a52
commit
9bde0acc0a
1 changed files with 2 additions and 1 deletions
|
@ -377,6 +377,7 @@ import time
|
|||
import logging as log
|
||||
import traceback
|
||||
|
||||
from ansible.module_utils._text import to_native
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.ec2 import boto3_conn, ec2_argument_spec, HAS_BOTO3, camel_dict_to_snake_dict, get_aws_connection_info, AWSRetry
|
||||
|
||||
|
@ -793,7 +794,7 @@ def create_autoscaling_group(connection, module):
|
|||
for k, v in tag.items():
|
||||
if k != 'propagate_at_launch':
|
||||
asg_tags.append(dict(Key=k,
|
||||
Value=v,
|
||||
Value=to_native(v),
|
||||
PropagateAtLaunch=bool(tag.get('propagate_at_launch', True)),
|
||||
ResourceType='auto-scaling-group',
|
||||
ResourceId=group_name))
|
||||
|
|
Loading…
Reference in a new issue