Deny

Deny the request inconditionnally.

Example usage

policies.yml
---

- description: Everything is disallowed.
  hosts:
    - +.*
  default: Deny
  policies:
    - members:
        - all
      rules:
        any:
          Deny:

...

Note

This example is a bit silly, as the default rule is Deny. It could have been written as follow.

policies.yml
---

- description: Everything is disallowed.
  hosts:
    - +.*
  default: Deny

...