forked from lacework/terraform-aws-agentless-scanning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
44 lines (36 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
output "agentless_scan_ecs_task_role_arn" {
value = local.agentless_scan_ecs_task_role_arn
description = "Output ECS task role ARN."
}
output "agentless_scan_ecs_execution_role_arn" {
value = local.agentless_scan_ecs_execution_role_arn
description = "Output ECS execution role ARN."
}
output "agentless_scan_ecs_event_role_arn" {
value = local.agentless_scan_ecs_event_role_arn
description = "Output ECS event role ARN."
}
output "agentless_scan_secret_arn" {
value = local.agentless_scan_secret_arn
description = "AWS SecretsManager Secret ARN for Lacework Account and Token."
}
output "prefix" {
value = var.prefix
description = "Prefix used to add uniqueness to resource names."
}
output "suffix" {
value = local.suffix
description = "Suffix used to add uniqueness to resource names."
}
output "lacework_account" {
value = var.lacework_account
description = "Lacework Account Name for Integration."
}
output "lacework_domain" {
value = var.lacework_domain
description = "Lacework Domain Name for Integration."
}
output "external_id" {
value = local.external_id
description = "External ID used for assuming snapshot creation and cross-account roles."
}