AppSecret

data class AppSecret(val identity: String? = null, val keyVaultSecretId: String? = null, val name: String, val value: String? = null)

Constructors

Link copied to clipboard
constructor(identity: String? = null, keyVaultSecretId: String? = null, name: String, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val identity: String? = null

The identity to use for accessing the Key Vault secret reference. This can either be the Resource ID of a User Assigned Identity, or System for the System Assigned Identity. !>Note: identity must be used together with key_vault_secret_id

Link copied to clipboard

The ID of a Key Vault secret. This can be a versioned or version-less ID. !>Note: When using key_vault_secret_id, ignore_changes should be used to ignore any changes to value.

Link copied to clipboard

The secret name.

Link copied to clipboard
val value: String? = null

The value for this secret. !>Note: value will be ignored if key_vault_secret_id and identity are provided.