ansible/test
Gonéri Le Bouder 039c770a95 vmware_host_firewall_manager: fix #61332
Since https://github.com/ansible/ansible/pull/56733, we were not able to apply
firewall rules with no `allowed_hosts` key.

closes: #61332

In addition, this patch ensures the `allowed_hosts` key accepts a dict,
instead of a dict in a single entry list.

```yaml
vmware_host_firewall_manager:
  esxi_hostname: "{{ esxi1 }}"
  rules:
    - name: NFC
      enabled: True
      allowed_hosts:
        - all_ip: False
          ip_address:
            - "1.2.3.4"
```

Should be written:

```yaml
vmware_host_firewall_manager:
  esxi_hostname: "{{ esxi1 }}"
  rules:
    - name: NFC
      enabled: True
      allowed_hosts:
        all_ip: False
        ip_address:
          - "1.2.3.4"
```
2019-10-28 13:01:02 -04:00
..
ansible_test Relocate ansible-test self tests outside package. (#61255) 2019-08-24 11:38:30 -07:00
integration vmware_host_firewall_manager: fix #61332 2019-10-28 13:01:02 -04:00
legacy Fix obvious typos (#62821) 2019-10-18 12:56:55 +01:00
lib/ansible_test Fix various import sanity test issues. 2019-10-22 23:00:35 -07:00
sanity BOTMETA support migrated_to (#63952) 2019-10-28 11:02:31 +00:00
units AWS module_utils: Clear out Sanity Test issues (#63991) 2019-10-28 09:21:40 +00:00
utils Limit Shippable matrix check to ansible repo. 2019-10-01 09:53:19 -07:00