Skip to content

Commit

Permalink
Add role name and ARN to outputs (#8)
Browse files Browse the repository at this point in the history
* Add role arn to outputs

* add execution_role_name output
  • Loading branch information
jwilson8767 authored Aug 12, 2021
1 parent 5681368 commit eaba588
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ output "function_arn" {
output "function_name" {
value = var.name
}

output execution_role_name {
value = aws_iam_role.lambda_at_edge.name
}

output execution_role_arn {
value = aws_iam_role.lambda_at_edge.arn
}

0 comments on commit eaba588

Please sign in to comment.