github RJPearson94/terraform-aws-open-next v3.2.0

4 days ago

Add origin timeout settings and brotli and gzip support for CloudFront configurations

To globally configure origin timeouts, you can use the following

origin_timeouts = {
    keepalive_timeout = 60
    read_timeout = 60
    connection_attempts = 3
    connection_timeout = 10
}

This can be overridden per function.

To enable brotli and gzip support, you can use the following

distribution = {
    cache_policy = {
      enable_accept_encoding_brotli = true
      enable_accept_encoding_gzip = true
    }
}

Full Changelog: v3.1.0...v3.2.0

Don't miss a new terraform-aws-open-next release

NewReleases is sending notifications on new releases.