forked from lvthillo/terraform-nlb-alb-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
39 lines (32 loc) · 863 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 "role_id" {
description = "The ID of the role"
value = aws_iam_role.lambda_role.id
}
output "role_arn" {
description = "The ARN of the role"
value = aws_iam_role.lambda_role.arn
}
output "policy_id" {
description = "The ID of the policy"
value = aws_iam_policy.lambda_policy.id
}
output "policy_arn" {
description = "The ARN of the policy"
value = aws_iam_policy.lambda_policy.arn
}
output "lambda_id" {
description = "The ID of the lambda"
value = aws_lambda_function.lambda.arn
}
output "lambda_arn" {
description = "The ARN of the lambda"
value = aws_lambda_function.lambda.arn
}
output "bucket_id" {
description = "The ID of the bucket"
value = aws_s3_bucket.bucket.id
}
output "bucket_arn" {
description = "The ARN of the bucket"
value = aws_s3_bucket.bucket.arn
}