File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ data "aws_caller_identity" "current" {}
7
7
data "aws_region" "current" {}
8
8
9
9
data "aws_iam_policy_document" "update_lambda" {
10
+ # checkov:skip=CKV_AWS_356: Read only
10
11
statement {
11
12
sid = " ReadLambda"
12
13
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ output "lambda_function_name" {
8
8
value = module. lambda . lambda_function_name
9
9
}
10
10
11
+ output "lambda_function_version" {
12
+ description = " Latest published version of Lambda Function"
13
+ value = module. lambda . lambda_function_version
14
+ }
15
+
11
16
# Cloudwatch Log Group
12
17
output "lambda_cloudwatch_log_group_arn" {
13
18
description = " Lambda Cloudwatch Log group"
@@ -35,6 +40,12 @@ output "lambda_role_unique_id" {
35
40
value = module. lambda . lambda_role_unique_id
36
41
}
37
42
43
+ # IAM Role for GHA
44
+ output "lamda_gha_role_name" {
45
+ description = " The crated role that can be assumed for the configured repository."
46
+ value = try (module. lamda_gha [0 ]. role . name , " " )
47
+ }
48
+
38
49
# For Lambda Edge and Cloudfront Integration
39
50
40
51
# For Lambda@Edge Association with cloudfront
You can’t perform that action at this time.
0 commit comments