I am using ansible 2.9 and cannot lookout for a way to append below JSON structure with data
"Variables":[
{
"Strings": [
"abc",
"xyz"
],
"Inputs": true
}
]
I want to add 'efg' in strings, but not sure what is the syntax to be used in this. using Ansible set_fact for appending this.
I know we can do this using combine_filter but that only works for ansible 2.10 I guess. Any suggestion on how to do this.