20 lines
590 B
HCL
20 lines
590 B
HCL
output "service_account_email" {
|
|
description = "The email of the service account"
|
|
value = stackit_service_account.this.email
|
|
}
|
|
|
|
output "service_account_id" {
|
|
description = "Internal ID of the service account"
|
|
value = stackit_service_account.this.id
|
|
}
|
|
|
|
output "service_account_key_id" {
|
|
description = "ID of the created key"
|
|
value = try(stackit_service_account_key.this[0].key_id, null)
|
|
}
|
|
|
|
output "service_account_key_json" {
|
|
description = "Sensitive JSON key output"
|
|
value = try(stackit_service_account_key.this[0].json, null)
|
|
sensitive = true
|
|
}
|