We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a063de commit ce1faf9Copy full SHA for ce1faf9
main.tf
@@ -191,6 +191,7 @@ resource "aws_apigatewayv2_authorizer" "this" {
191
name = try(each.value.name, null)
192
authorizer_uri = try(each.value.authorizer_uri, null)
193
authorizer_payload_format_version = try(each.value.authorizer_payload_format_version, null)
194
+ authorizer_result_ttl_in_seconds = try(each.value.authorizer_result_ttl_in_seconds, null)
195
196
dynamic "jwt_configuration" {
197
for_each = length(try(each.value.audience, [each.value.issuer], [])) > 0 ? [true] : []
0 commit comments