-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutput.tf
36 lines (31 loc) · 861 Bytes
/
output.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
# sbeacon
output "api_url" {
value = module.sbeacon.api_url
description = "URL used to invoke the API."
}
output "api_stage" {
value = module.sbeacon.api_stage
description = "API stage."
}
# cognito
output "cognito_client_id" {
value = module.cognito.cognito_client_id
description = "Cognito client Id for user registration and login."
}
output "cognito_user_pool_id" {
value = module.cognito.cognito_user_pool_id
description = "Cognito user pool Id."
}
output "admin_login_command" {
value = module.cognito.admin_login_command
description = "Admin Login Command"
}
output "guest_login_command" {
value = module.cognito.guest_login_command
description = "Guest Login Command"
}
# webgui
output "beacon_ui_url" {
value = module.webgui.cloudfront-url
description = "URL of the webapp."
}