Package version:

Interface NetworkRuleSet

A set of rules governing the network accessibility of a vault.

interface NetworkRuleSet {
    bypass?: string;
    defaultAction?: string;
    ipRules?: IPRule[];
    virtualNetworkRules?: VirtualNetworkRule[];
}

Properties

bypass?: string

Tells what traffic can bypass network rules. This can be 'AzureServices' or 'None'. If not specified the default is 'AzureServices'.

defaultAction?: string

The default action when no rule from ipRules and from virtualNetworkRules match. This is only used after the bypass property has been evaluated.

ipRules?: IPRule[]

The list of IP address rules.

virtualNetworkRules?: VirtualNetworkRule[]

The list of virtual network rules.