-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathoutputs.tf
More file actions
26 lines (21 loc) · 919 Bytes
/
outputs.tf
File metadata and controls
26 lines (21 loc) · 919 Bytes
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
# modules/single/modules/lambda/outputs.tf
output "cspm_external_id" {
description = "Aqua CSPM External ID generated by the 'generate_cspm_external_id_function' Lambda function"
value = local.cspm_external_id
}
output "volscan_external_id" {
description = "Aqua Volume Scanning External ID generated by the 'generate_volscan_external_id_function' Lambda function"
value = local.volscan_external_id
}
output "cspm_lambda_execution_role_arn" {
description = "The ARN of the lambda execution IAM role created for the CSPM"
value = aws_iam_role.cspm_lambda_execution_role.arn
}
output "cspm_role_arn" {
description = "The ARN of the IAM role created for the CSPM"
value = aws_iam_role.cspm_role.arn
}
output "agentless_role_arn" {
description = "The ARN of the IAM role created for the Agentless Volume Scanning"
value = try(aws_iam_role.agentless_role[0].arn, "")
}