mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* Fix #31271 - cast all tag values as strings * Replace `str` with `to_native`
This commit is contained in:
parent
2ba5998c94
commit
1353aae456
1 changed files with 2 additions and 1 deletions
|
@ -378,6 +378,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
|
||||
|
||||
|
@ -794,7 +795,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