NETWORK RULE

Config path: /<database>/<schema>/network_rule/<name>.yaml

Example:

type: IPV4
mode: INGRESS
value_list:
  - 192.168.2.0/24
  - 192.168.1.99
type: HOST_PORT
mode: EGRESS
value_list:
  - example.com
  - company.com:443

Schema

  • type (str) - network rule type (IPV4, HOST_PORT, etc.)

  • mode (str) - restriction mode (INGRESS, EGRESS, INTERNAL_STAGE)

  • value_list (list)

    • {items} (str) - network identifiers that will be allowed or blocked

  • comment (str)

Last updated