Skip to content

Commit

Permalink
chore: adding billing scope to outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
florianow committed Jan 6, 2025
1 parent 3e3585d commit 27fb8ca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ output "mca_service_principal_password" {
sensitive = true
}

output "mca_service_billing_scope" {
value = length(module.mca_service_principal) > 0 ? module.mca_service_principal[0].billing_scope : null
sensitive = true
}

output "metering_service_principal" {
description = "Metering Service Principal."
value = length(module.metering_service_principal) > 0 ? module.metering_service_principal[0].credentials : null
Expand Down

0 comments on commit 27fb8ca

Please sign in to comment.