-
Notifications
You must be signed in to change notification settings - Fork 9
/
outputs.tf
34 lines (28 loc) · 1.05 KB
/
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
output "definitions-bucket" {
description = "The bucket created to store de antivirus definitions"
value = aws_s3_bucket.antivirus-definitions
}
output "scanner-function" {
description = "The created scanner function resource"
value = aws_lambda_function.antivirus-scanner
}
output "update-function" {
description = "The created definitions update function resource"
value = aws_lambda_function.antivirus-update
}
output "scanner-function-role" {
description = "The role used by the scanner function"
value = aws_iam_role.antivirus-scanner-role
}
output "update-function-role" {
description = "The role used by the definitions update function"
value = aws_iam_role.antivirus-update-role
}
output "scanner-function-policy" {
description = "The policy attached to the scanner function role"
value = aws_iam_policy.antivirus-scanner-policy
}
output "update-function-policy" {
description = "The policy attached to the definitions update function role"
value = aws_iam_policy.antivirus-update-policy
}