-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
35 lines (29 loc) · 890 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
34
35
output "iot_pem" {
value = aws_iot_certificate.iot_certificate.*.certificate_pem
description = "IoT certificate data, in PEM format"
sensitive = true
}
output "iot_public_key" {
value = aws_iot_certificate.iot_certificate.*.public_key
description = "IoT public key"
sensitive = true
}
output "iot_private_key" {
value = aws_iot_certificate.iot_certificate.*.private_key
description = "IoT private key"
sensitive = true
}
output "iot_endpoint" {
value = data.aws_iot_endpoint.iot.endpoint_address
description = "IoT endpoint address"
}
output "base_url" {
value = aws_api_gateway_deployment.iot.invoke_url
}
output "iot_homebridge_access_id" {
value = aws_iam_access_key.homebridge_iam_access_key.id
}
output "iot_homebridge_access_secret" {
value = aws_iam_access_key.homebridge_iam_access_key.secret
sensitive = true
}