Skip to content

Commit 57b91c1

Browse files
committed
added github actions role arn
1 parent 3f17e0d commit 57b91c1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Terraform module for creating the lambda and the github actions IAM Role deploye
6666

6767
| Name | Description |
6868
|------|-------------|
69+
| <a name="output_github_actions_role_arn"></a> [github\_actions\_role\_arn](#output\_github\_actions\_role\_arn) | Role ARN used by the Github Actions |
6970
| <a name="output_lambda_cloudwatch_log_group_arn"></a> [lambda\_cloudwatch\_log\_group\_arn](#output\_lambda\_cloudwatch\_log\_group\_arn) | Lambda Cloudwatch Log group |
7071
| <a name="output_lambda_cloudwatch_log_group_name"></a> [lambda\_cloudwatch\_log\_group\_name](#output\_lambda\_cloudwatch\_log\_group\_name) | Lambda Cloudwatch Log group |
7172
| <a name="output_lambda_function_arn"></a> [lambda\_function\_arn](#output\_lambda\_function\_arn) | Lambda Function ARN |

outputs.tf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,10 @@ output "lambda_role_name" {
3333
output "lambda_role_unique_id" {
3434
description = "The unique id of the IAM role created for the Lambda Function"
3535
value = module.lambda.lambda_role_unique_id
36-
}
36+
}
37+
38+
# Github Actions
39+
output "github_actions_role_arn" {
40+
description = "Role ARN used by the Github Actions"
41+
value = module.github_actions_repo.role
42+
}

0 commit comments

Comments
 (0)