-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
29 lines (25 loc) · 1.06 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#output "service_principal_object_id" {
# value = [for app in azuread_service_principal.this : app.object_id]
# description = "The object id of the Service Principal."
#}
output "application_id" {
value = [for app in azuread_application.this : app.application_id]
description = "The client (application) ID."
}
#output "service_principal_password" {
# value = [for app in azuread_service_principal_password.this : nonsensitive(app.value)]
# description = "The password for the Service Principal."
#}
#
#output "service_principal_key_id" {
# value = [for app in azuread_service_principal_password.this : app.key_id]
# description = "A UUID used to uniquely identify this password credential."
#}
output "client_secret" {
value = [for app in azuread_application_password.this : nonsensitive(app.value)]
description = "The password for the Service Principal."
}
output "client_password" {
value = [for app in azuread_application_password.this : app.key_id]
description = "A UUID used to uniquely identify this password credential."
}