KeyVaultNetworkAcls

data class KeyVaultNetworkAcls(val bypass: String, val defaultAction: String, val ipRules: List<String>? = null, val virtualNetworkSubnetIds: List<String>? = null)

Constructors

Link copied to clipboard
constructor(bypass: String, defaultAction: String, ipRules: List<String>? = null, virtualNetworkSubnetIds: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies which traffic can bypass the network rules. Possible values are AzureServices and None.

Link copied to clipboard

The Default Action to use when no rules match from ip_rules / virtual_network_subnet_ids. Possible values are Allow and Deny.

Link copied to clipboard
val ipRules: List<String>? = null

One or more IP Addresses, or CIDR Blocks which should be able to access the Key Vault.

Link copied to clipboard

One or more Subnet IDs which should be able to access this Key Vault.