You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 ab2aaca61d)
5 years ago
..
ansible_test Relocate ansible-test self tests outside package. (#61255) 5 years ago
integration [stable-2.9] vmware_host_firewall_manager: fix #61332 (#63567) (#64410) 5 years ago
legacy Rename Azure modules: facts -> info (#61505) 5 years ago
lib/ansible_test ansible-test: bumping ACME test container version (#64424) 5 years ago
sanity Backport/2.9/docs2 (#63524) 5 years ago
units [stable-2.9] Account for empty strings when splitting the host pattern (#62442) (#62679) 5 years ago
utils [stable-2.9] Limit Shippable matrix check to ansible repo. 5 years ago