Ansible Loop and Update Dict
问题 I'm trying to use Ansible to loop through a nested dict and add a new key:value. I'm able to add a value using combine to the top-level dict but unsure how to update the value dict. I see that loop can be used to iterate through the dict but how can update be done at the same time? My Dict {'host-a': {'os': 'Linux', 'port': '22', 'status': 'Running'}, 'host-b': {'os': 'Linux', 'port': '22', 'status': 'Running'}, 'host-c': {'os': 'Linux', 'port': '22', 'status': 'Running'}} I'm able to append