generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
33 lines (27 loc) · 794 Bytes
/
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
30
31
32
33
##############################################################################
# Outputs
##############################################################################
output "tenant_id" {
description = "Tenant ID of the AppID resource"
value = module.appid.tenant_id
}
output "id" {
description = "AppID instance ID."
value = module.appid.id
}
output "dashboard_url" {
description = "AppID dashboard url."
value = module.appid.dashboard_url
}
output "user_subjects" {
description = "The user's identifier."
value = module.appid.user_subjects
}
output "appid_name" {
description = "AppID instance name."
value = module.appid.appid_name
}
output "appid_crn" {
description = "AppID instance CRN."
value = module.appid.appid_crn
}