AzureKeyVaultKmsArgs

data class AzureKeyVaultKmsArgs(val enabled: Output<Boolean>? = null, val keyId: Output<String>? = null, val keyVaultNetworkAccess: Output<Either<String, KeyVaultNetworkAccessTypes>>? = null, val keyVaultResourceId: Output<String>? = null) : ConvertibleToJava<AzureKeyVaultKmsArgs>

Azure Key Vault key management service settings for the security profile.

Constructors

Link copied to clipboard
constructor(enabled: Output<Boolean>? = null, keyId: Output<String>? = null, keyVaultNetworkAccess: Output<Either<String, KeyVaultNetworkAccessTypes>>? = null, keyVaultResourceId: Output<String>? = null)

Properties

Link copied to clipboard
val enabled: Output<Boolean>? = null

Whether to enable Azure Key Vault key management service. The default is false.

Link copied to clipboard
val keyId: Output<String>? = null

Identifier of Azure Key Vault key. See key identifier format for more details. When Azure Key Vault key management service is enabled, this field is required and must be a valid key identifier. When Azure Key Vault key management service is disabled, leave the field empty.

Link copied to clipboard

Network access of key vault. The possible values are Public and Private. Public means the key vault allows public access from all networks. Private means the key vault disables public access and enables private link. The default value is Public.

Link copied to clipboard
val keyVaultResourceId: Output<String>? = null

Resource ID of key vault. When keyVaultNetworkAccess is Private, this field is required and must be a valid resource ID. When keyVaultNetworkAccess is Public, leave the field empty.

Functions

Link copied to clipboard
open override fun toJava(): AzureKeyVaultKmsArgs