From 0c9714d0ce630f24a24a9ff2b05fb9dccb378378 Mon Sep 17 00:00:00 2001 From: evertonevaristo Date: Mon, 7 Jun 2021 20:02:21 -0300 Subject: [PATCH] Add missing inputs to the wordpress example (#62) * There are two missing properties in the locals dict * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> --- README.md | 3 +-- examples/wordpress/main.tf | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f498009..56aa1b7 100644 --- a/README.md +++ b/README.md @@ -265,6 +265,7 @@ Like this project? Please give it a ★ on [our GitHub](https://github.com/cloud Are you using this project or any of our other projects? Consider [leaving a testimonial][testimonial]. =) + ## Related Projects Check out these related projects. @@ -275,8 +276,6 @@ Check out these related projects. - [terraform-aws-s3-website](https://github.com/cloudposse/terraform-aws-s3-website) - Terraform module to provision S3-backed websites - [terraform-root-modules/aws/docs](https://github.com/cloudposse/terraform-root-modules/tree/master/aws/docs) - Reference implementation combining `terraform-aws-s3-website` with `terraform-aws-cdn` - - ## Help **Got a question?** We got answers. diff --git a/examples/wordpress/main.tf b/examples/wordpress/main.tf index 6faf258..9d75951 100644 --- a/examples/wordpress/main.tf +++ b/examples/wordpress/main.tf @@ -12,6 +12,8 @@ locals { forward_header_values = ["*"] forward_query_string = true lambda_function_association = [] + cache_policy_id = "" + origin_request_policy_id = "" } }