I read this page of Ansible docs about Advanced Syntax topics.
---
my_unsafe_array:
- !unsafe 'unsafe element'
- 'safe element'
my_unsafe_hash:
unsafe_key: !unsafe 'unsafe value'
What is the use of this unsafe
keyword ?
It is telling us about the unsafe and raw strings.
I don't know what to make from that, cannot think of any use case . Can anybody specify any use case where this would be useful?