Skip to content

Commit 8dc25b3

Browse files
Merge pull request #5 from TechHoldingLLC/fix/variables
Corrected output values for iam role
2 parents b717331 + 2b8e3f5 commit 8dc25b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ output "function_url" {
2121

2222
output "role_name" {
2323
description = "Role name"
24-
value = aws_iam_role.lambda.arn
24+
value = aws_iam_role.lambda.name
2525
}
2626

2727
output "role_arn" {
2828
description = "Role arn"
29-
value = aws_iam_role.lambda.name
29+
value = aws_iam_role.lambda.arn
3030
}

0 commit comments

Comments
 (0)