forked from squidfunk/terraform-aws-cognito-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
142 lines (113 loc) · 4.19 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Copyright (c) 2018-2019 Martin Donath <[email protected]>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# -----------------------------------------------------------------------------
# Providers
# -----------------------------------------------------------------------------
# output.aws_account_id
output "aws_account_id" {
value = "${data.aws_caller_identity._.account_id}"
}
# output.aws_region
output "aws_region" {
value = "${var.region}"
}
# -----------------------------------------------------------------------------
# Outputs: API Gateway
# -----------------------------------------------------------------------------
# output.api_id
output "api_id" {
value = "${module.api.api_id}"
}
# output.api_stage
output "api_stage" {
value = "${module.api.api_stage}"
}
# output.api_invoke_url
output "api_invoke_url" {
value = "${module.api.api_invoke_url}"
}
# output.api_base_path
output "api_base_path" {
value = "${module.api.api_base_path}"
}
# -----------------------------------------------------------------------------
# Variables: Application
# -----------------------------------------------------------------------------
# output.app_hosted_zone_id
output "app_hosted_zone_id" {
value = "${var.app_hosted_zone_id}"
}
# output.app_certificate_arn
output "app_certificate_arn" {
value = "${var.app_certificate_arn}"
}
# output.app_domain
output "app_domain" {
value = "${var.app_domain}"
}
# output.app_origin
output "app_origin" {
value = "${var.app_origin}"
}
# -----------------------------------------------------------------------------
# Outputs: Cognito
# -----------------------------------------------------------------------------
# output.cognito_user_pool_id
output "cognito_user_pool_id" {
value = "${module.identity.cognito_user_pool_id}"
}
# output.cognito_user_pool_arn
output "cognito_user_pool_arn" {
value = "${module.identity.cognito_user_pool_arn}"
}
# output.cognito_user_pool_client_id
output "cognito_user_pool_client_id" {
value = "${module.identity.cognito_user_pool_client_id}"
}
# output.cognito_identity_pool_id
output "cognito_identity_pool_id" {
value = "${module.identity.cognito_identity_pool_id}"
}
# output.cognito_identity_pool_name
output "cognito_identity_pool_name" {
value = "${var.cognito_identity_pool_name}"
}
# output.cognito_identity_pool_provider
output "cognito_identity_pool_provider" {
value = "${var.cognito_identity_pool_provider}"
}
# -----------------------------------------------------------------------------
# Outputs: DynamoDB
# -----------------------------------------------------------------------------
# output.dynamodb_table
output "dynamodb_table" {
value = "${module.api.dynamodb_table}"
}
# -----------------------------------------------------------------------------
# Outputs: SNS
# -----------------------------------------------------------------------------
# output.sns_topic_arn
output "sns_topic_arn" {
value = "${module.api.sns_topic_arn}"
}
# -----------------------------------------------------------------------------
# Outputs: SES
# -----------------------------------------------------------------------------
# output.ses_sender_address
output "ses_sender_address" {
value = "${var.ses_sender_address}"
}