Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ resource "aws_apigatewayv2_authorizer" "this" {
authorizer_uri = try(each.value.authorizer_uri, null)
authorizer_payload_format_version = try(each.value.authorizer_payload_format_version, null)
authorizer_result_ttl_in_seconds = try(each.value.authorizer_result_ttl_in_seconds, null)
enable_simple_responses = try(each.value.enable_simple_responses, false)

dynamic "jwt_configuration" {
for_each = length(try(each.value.audience, [each.value.issuer], [])) > 0 ? [true] : []
Expand Down