modules/key/outputs.tf (16 lines of code) (raw):
output "id" {
description = "The Key Vault Key ID"
value = azurerm_key_vault_key.this.id
}
output "resource_id" {
description = "The Azure resource id of the secret."
value = azurerm_key_vault_key.this.resource_id
}
output "resource_versionless_id" {
description = "The versionless Azure resource id of the secret."
value = azurerm_key_vault_key.this.resource_versionless_id
}
output "versionless_id" {
description = "The Base ID of the Key Vault Key"
value = azurerm_key_vault_key.this.versionless_id
}