Skip to content

Commit 9f57ec2

Browse files
Merge commit 'b7e08447762fa157ee440c806d81f962a55ff9dd' into release
2 parents 2658756 + b7e0844 commit 9f57ec2

File tree

9 files changed

+61
-24
lines changed

9 files changed

+61
-24
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [12.1.0] - 2022-04-04
6+
7+
- Ensure compatibility with AWS Provider Version 4 ([#119](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/119), [#120](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/issues/120))
8+
- Uses Image Optimizer module of [Next.js 12.1.0](https://github.com/vercel/next.js/releases/tag/v12.1.0) ([#123](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/123))
9+
- Adds option to enable SVG support ([#124](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/124))
10+
511
## [12.0.10] - 2022-03-29
612

713
- Updates sharp from `v0.30.1` to [`v0.30.3`](https://github.com/lovell/sharp/releases/tag/v0.30.3) ([#115](https://github.com/milliHQ/terraform-aws-next-js-image-optimization/pull/115))

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ terraform {
3535
required_providers {
3636
aws = {
3737
source = "hashicorp/aws"
38-
version = "~> 3.0"
38+
version = "~> 4.0"
3939
}
4040
}
4141
}
@@ -111,13 +111,13 @@ Then rebuild and redeploy your Next.js application to make use of the changed co
111111
| Name | Version |
112112
|------|---------|
113113
| terraform | >= 0.13 |
114-
| aws | >= 3.43.0 |
114+
| aws | >= 4.8 |
115115

116116
## Providers
117117

118118
| Name | Version |
119119
|------|---------|
120-
| aws | >= 3.43.0 |
120+
| aws | >= 4.8 |
121121

122122
## Inputs
123123

@@ -136,11 +136,13 @@ Then rebuild and redeploy your Next.js application to make use of the changed co
136136
| lambda\_role\_permissions\_boundary | ARN of IAM policy that scopes aws\_iam\_role access for the lambda. | `string` | `null` | no |
137137
| lambda\_timeout | Max amount of time the worker Lambda Function has to return a response in seconds. Should not be more than 30 (Limited by API Gateway). | `number` | `30` | no |
138138
| next\_image\_base\_origin | Base URL where requests for absolute image paths should be resolved to. Should not have a trailing slash. | `string` | `null` | no |
139+
| next\_image\_content\_security\_policy | Set the value of the Content-Security-Policy header in the response of the image optimizer. | `string` | `null` | no |
140+
| next\_image\_dangerously\_allow\_SVG | Enable the optimization of SVG images. | `bool` | `false` | no |
139141
| next\_image\_device\_sizes | Allowed device sizes that should be used for image optimization. | `list(number)` | `null` | no |
140142
| next\_image\_domains | Allowed origin domains that can be used for fetching images. | `list(string)` | `[]` | no |
141143
| next\_image\_formats | If the Accept head matches more than one of the configured formats, the first match in the array is used. Therefore, the array order matters. If there is no match, the Image Optimization API will fallback to the original image's format. | `list(string)` | <pre>[<br> "image/webp"<br>]</pre> | no |
142144
| next\_image\_image\_sizes | Allowed image sizes that should be used for image optimization. | `list(number)` | `null` | no |
143-
| next\_image\_version | Next.js version from where you want to use the image optimizer from. Supports semver ranges. | `string` | `"12.0.10"` | no |
145+
| next\_image\_version | Next.js version from where you want to use the image optimizer from. Supports semver ranges. | `string` | `"12.1.0"` | no |
144146
| source\_bucket\_id | When your static files are deployed to a Bucket (e.g. with Terraform Next.js) the optimizer can pull the source from the bucket rather than over the internet. | `string` | `null` | no |
145147
| tags | Tag metadata to label AWS resources that support tags. | `map(string)` | `{}` | no |
146148

docs/assets/architecture.png

-235 Bytes
Loading

examples/with-existing-cloudfront/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "~> 3.0"
5+
version = "~> 4.0"
66
}
77
}
88
}

examples/with-next-js-export/main.tf

+23-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "~> 3.0"
5+
version = "~> 4.0"
66
}
77
}
88
}
@@ -40,23 +40,38 @@ module "next_image_optimizer" {
4040
###########
4141
resource "aws_s3_bucket" "website_bucket" {
4242
bucket_prefix = var.deployment_name
43-
acl = "public-read"
4443
force_destroy = true
4544

45+
tags = {
46+
Name = var.deployment_name
47+
}
48+
}
49+
50+
resource "aws_s3_bucket_acl" "website_bucket" {
51+
bucket = aws_s3_bucket.website_bucket.id
52+
acl = "public-read"
53+
}
54+
55+
resource "aws_s3_bucket_cors_configuration" "website_bucket" {
56+
bucket = aws_s3_bucket.website_bucket.id
57+
4658
cors_rule {
4759
allowed_headers = ["Authorization", "Content-Length"]
4860
allowed_methods = ["GET", "POST"]
4961
allowed_origins = ["*"]
5062
max_age_seconds = 3000
5163
}
64+
}
5265

53-
website {
54-
index_document = "index.html"
55-
error_document = "404/index.html"
66+
resource "aws_s3_bucket_website_configuration" "website_bucket" {
67+
bucket = aws_s3_bucket.website_bucket.id
68+
69+
index_document {
70+
suffix = "index.html"
5671
}
5772

58-
tags = {
59-
Name = var.deployment_name
73+
error_document {
74+
key = "404/index.html"
6075
}
6176
}
6277

@@ -106,7 +121,7 @@ resource "aws_cloudfront_distribution" "distribution" {
106121
}
107122

108123
origin {
109-
domain_name = aws_s3_bucket.website_bucket.website_endpoint
124+
domain_name = aws_s3_bucket_website_configuration.website_bucket.website_endpoint
110125
origin_id = "website-bucket"
111126

112127
custom_origin_config {

examples/with-next-js/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ terraform {
1515
required_providers {
1616
aws = {
1717
source = "hashicorp/aws"
18-
version = "~> 3.0"
18+
version = "~> 4.0"
1919
}
2020
}
2121
}

main.tf

+10-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "lambda_content" {
1515

1616
module "image_optimizer" {
1717
source = "terraform-aws-modules/lambda/aws"
18-
version = "2.17.0"
18+
version = "3.1.0"
1919

2020
function_name = var.deployment_name
2121
description = "Managed by Terraform Next.js image optimizer"
@@ -26,13 +26,15 @@ module "image_optimizer" {
2626
publish = true
2727

2828
environment_variables = {
29-
NODE_ENV = "production"
30-
TF_NEXTIMAGE_BASE_ORIGIN = var.next_image_base_origin
31-
TF_NEXTIMAGE_DOMAINS = jsonencode(var.next_image_domains)
32-
TF_NEXTIMAGE_DEVICE_SIZES = var.next_image_device_sizes != null ? jsonencode(var.next_image_device_sizes) : null
33-
TF_NEXTIMAGE_FORMATS = jsonencode(var.next_image_formats)
34-
TF_NEXTIMAGE_IMAGE_SIZES = var.next_image_image_sizes != null ? jsonencode(var.next_image_image_sizes) : null
35-
TF_NEXTIMAGE_SOURCE_BUCKET = var.source_bucket_id
29+
NODE_ENV = "production"
30+
TF_NEXTIMAGE_BASE_ORIGIN = var.next_image_base_origin
31+
TF_NEXTIMAGE_DOMAINS = jsonencode(var.next_image_domains)
32+
TF_NEXTIMAGE_DEVICE_SIZES = var.next_image_device_sizes != null ? jsonencode(var.next_image_device_sizes) : null
33+
TF_NEXTIMAGE_FORMATS = jsonencode(var.next_image_formats)
34+
TF_NEXTIMAGE_IMAGE_SIZES = var.next_image_image_sizes != null ? jsonencode(var.next_image_image_sizes) : null
35+
TF_NEXTIMAGE_DANGEROUSLY_ALLOW_SVG = var.next_image_dangerously_allow_SVG ? jsonencode(var.next_image_dangerously_allow_SVG) : null
36+
TF_NEXTIMAGE_CONTENT_SECURITY_POLICY = var.next_image_content_security_policy != null ? jsonencode(var.next_image_content_security_policy) : null
37+
TF_NEXTIMAGE_SOURCE_BUCKET = var.source_bucket_id
3638
}
3739

3840
create_package = false

variables.tf

+13-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
variable "next_image_version" {
55
description = "Next.js version from where you want to use the image optimizer from. Supports semver ranges."
66
type = string
7-
default = "12.0.10"
7+
default = "12.1.0"
88
}
99

1010
variable "next_image_base_origin" {
@@ -37,6 +37,18 @@ variable "next_image_image_sizes" {
3737
default = null
3838
}
3939

40+
variable "next_image_dangerously_allow_SVG" {
41+
description = "Enable the optimization of SVG images."
42+
type = bool
43+
default = false
44+
}
45+
46+
variable "next_image_content_security_policy" {
47+
description = "Set the value of the Content-Security-Policy header in the response of the image optimizer."
48+
type = string
49+
default = null
50+
}
51+
4052
variable "lambda_memory_size" {
4153
description = "Amount of memory in MB the worker Lambda Function can use. Valid value between 128 MB to 10,240 MB, in 1 MB increments."
4254
type = number

versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 3.43.0"
7+
version = ">= 4.8"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)