-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
71 lines (60 loc) · 2.08 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
output "id" {
description = "The ID of the bookmark application."
value = okta_app_bookmark.this.id
}
output "catalog_id" {
description = "The ID of the application template in Okta application catalog."
value = okta_app_bookmark.this.name
}
output "name" {
description = "The label of the bookmark application."
value = okta_app_bookmark.this.label
}
output "url" {
description = "The URL of the bookmark application."
value = okta_app_bookmark.this.url
}
output "logo_url" {
description = "The URL of the application logo."
value = okta_app_bookmark.this.logo_url
}
output "enabled" {
description = "Whether to enable the bookmark application."
value = okta_app_bookmark.this.status == "ACTIVE"
}
output "sign_on" {
description = "The configurations for application sign-on."
value = {
method = okta_app_bookmark.this.sign_on_mode
authentication_policy = okta_app_bookmark.this.authentication_policy
}
}
# output "self_service_enabled" {
# description = "Whether to enable self-service."
# value = okta_app_bookmark.this.accessibility_self_service
# }
output "notes" {
description = "The configurations for application notes."
value = {
"admin" = okta_app_bookmark.this.admin_note
"user" = okta_app_bookmark.this.enduser_note
}
}
output "custom_error_page" {
description = "The URL for custom error page."
value = okta_app_bookmark.this.accessibility_error_redirect_url
}
output "group_assignments" {
description = "The information for the assigned groups by the Okta group rule."
value = [
for group in data.okta_group.this :
group.name
]
}
# output "debug" {
# value = {
# for k, v in okta_app_bookmark.this :
# k => v
# if !contains(["id", "label", "url", "status", "authentication_policy", "accessibility_error_redirect_url", "timeouts", "request_integration", "accessibility_login_redirect_url", "accessibility_self_service", "hide_ios", "hide_web", "enduser_note", "admin_note", "auto_submit_toolbar", "logo", "logo_url", "name", "sign_on_mode"], k)
# }
# }