Skip to content

Commit eaba588

Browse files
authored
Add role name and ARN to outputs (#8)
* Add role arn to outputs * add execution_role_name output
1 parent 5681368 commit eaba588

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

outputs.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ output "function_arn" {
99
output "function_name" {
1010
value = var.name
1111
}
12+
13+
output execution_role_name {
14+
value = aws_iam_role.lambda_at_edge.name
15+
}
16+
17+
output execution_role_arn {
18+
value = aws_iam_role.lambda_at_edge.arn
19+
}

0 commit comments

Comments
 (0)