ansible/test
Gonéri Le Bouder 8b3d1581bd [stable-2.9] vmware_host_firewall_manager: fix #61332 (#63567) (#64410)
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"
```

(cherry picked from commit ab2aaca61d67a479626a930644fed35859365441)
2019-11-12 21:31:33 -08:00
..
ansible_test Relocate ansible-test self tests outside package. (#61255) 2019-08-24 11:38:30 -07:00
integration [stable-2.9] vmware_host_firewall_manager: fix #61332 (#63567) (#64410) 2019-11-12 21:31:33 -08:00
legacy Rename Azure modules: facts -> info (#61505) 2019-08-29 17:00:45 +08:00
lib/ansible_test ansible-test: bumping ACME test container version (#64424) 2019-11-12 10:54:28 -08:00
sanity Backport/2.9/docs2 (#63524) 2019-10-16 10:26:31 -05:00
units [stable-2.9] Account for empty strings when splitting the host pattern (#62442) (#62679) 2019-11-12 12:01:12 -08:00
utils [stable-2.9] Limit Shippable matrix check to ansible repo. 2019-10-01 11:53:18 -07:00