fix unsafe parameter update

This commit is contained in:
a@a.ru 2019-06-11 13:29:01 +03:00
parent a37deff573
commit 802b5eb5d1
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@
- name: Update chain variables
aws_ssm_parameter_store:
name: "/{{ group_names[0] }}/{{ chain }}/{{ item.key }}"
value: !unsafe '{{ item.value }}'
value: "{{ item.value }}"
profile: "{{ profile }}"
aws_access_key: "{{ access_key }}"
aws_secret_key: "{{ secret_key }}"