generated from pbs/terraform-aws-template-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (32 loc) · 1021 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
36
37
38
39
output "arn" {
description = "ARN of the canary"
value = aws_synthetics_canary.canary.arn
}
output "engine_arn" {
description = "ARN of the Lambda function that is used as your canary's engine"
value = aws_synthetics_canary.canary.engine_arn
}
output "id" {
description = "Name of the canary"
value = aws_synthetics_canary.canary.id
}
output "name" {
description = "Name of the canary"
value = aws_synthetics_canary.canary.id
}
output "source_location_arn" {
description = "ARN of the Lambda layer where Synthetics stores the canary script code"
value = aws_synthetics_canary.canary.source_location_arn
}
output "status" {
description = "Status of the canary"
value = aws_synthetics_canary.canary.status
}
output "timeline" {
description = "Timeline of the canary"
value = aws_synthetics_canary.canary.timeline
}
output "execution_role_name" {
description = "Name of the IAM role used to run the canary"
value = module.role[0].name
}