Skip to content

Commit ce1faf9

Browse files
authored
feat: Added support for ttl in authorizer resource (#68)
1 parent 2a063de commit ce1faf9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ resource "aws_apigatewayv2_authorizer" "this" {
191191
name = try(each.value.name, null)
192192
authorizer_uri = try(each.value.authorizer_uri, null)
193193
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)
194195

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

0 commit comments

Comments
 (0)