Use this data source to access information about an existing Key Vault Key.
data "azurestack_key_vault_key" "example" {
name = "secret-sauce"
key_vault_id = data.azurestack_key_vault.existing.id
}
output "key_type" {
value = data.azurestack_key_vault_key.example.key_type
}
The following arguments are supported:
name
- Specifies the name of the Key Vault Key.
key_vault_id
- Specifies the ID of the Key Vault instance where the Secret resides, available on the azurestack_key_vault
Data Source / Resource.
NOTE: The vault must be in the same subscription as the provider. If the vault is in another subscription, you must create an aliased provider for that subscription.
The following attributes are exported:
id
- The ID of the Key Vault Key.
e
- The RSA public exponent of this Key Vault Key.
key_type
- Specifies the Key Type of this Key Vault Key
key_size
- Specifies the Size of this Key Vault Key.
key_opts
- A list of JSON web key operations assigned to this Key Vault Key
n
- The RSA modulus of this Key Vault Key.
tags
- A mapping of tags assigned to this Key Vault Key.
version
- The current version of the Key Vault Key.
versionless_id
- The Base ID of the Key Vault Key.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Key Vault Key.