-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutput.tf
65 lines (53 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
output "agentless_orchestrate_service_account_email" {
value = local.agentless_orchestrate_service_account_email
description = "Output Cloud Run service account email."
}
output "agentless_scan_service_account_email" {
value = local.agentless_scan_service_account_email
description = "Output Compute service account email."
}
output "agentless_scan_secret_id" {
value = local.agentless_scan_secret_id
description = "Google Secret Manager ID for Lacework Account and Token."
}
output "bucket_name" {
value = local.bucket_name
description = "The storage bucket name for Agentless Workload Scanning data."
}
output "lacework_account" {
value = local.lacework_account
description = "Lacework Account Name for Integration."
}
output "lacework_domain" {
value = local.lacework_domain
description = "Lacework Domain Name for Integration."
}
output "prefix" {
value = var.prefix
description = "Prefix used to add uniqueness to resource names."
}
output "service_account_name" {
value = local.lacework_integration_service_account_name
description = "The service account name for Lacework."
}
output "service_account_private_key" {
value = local.lacework_integration_service_account_json_key
description = "The base64 encoded private key in JSON format for Lacework."
sensitive = true
}
output "suffix" {
value = local.suffix
description = "Suffix used to add uniqueness to resource names."
}
output "project_filter_list" {
value = local.final_project_filter_list
description = "The list of projects to scan in this module."
}
output "integration_type" {
value = local.integration_type
description = "The scope of integration."
}
output "lacework_integration_guid" {
value = var.global ? lacework_integration_gcp_agentless_scanning.lacework_cloud_account[0].intg_guid : null
description = "GUID of the created Lacework integration"
}