From e1888b381ca5d1b3c121cc8272d7bdab97047120 Mon Sep 17 00:00:00 2001 From: Keith Rozario <795867+keithrozario@users.noreply.github.com> Date: Tue, 28 May 2024 22:55:46 +0800 Subject: [PATCH] Update README.md (#308) * Update README.md Added `name` field to second example. There is a known bug https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn/issues/151 if the name field is ommited. Might be easier to just update the docs than fix the bug, since it's been open since 2021. * added name to 2nd example --- README.md | 1 + README.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 0c69a4de..5d372b53 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ module "cdn" { aliases = ["assets.cloudposse.com"] dns_alias_enabled = true parent_zone_name = "cloudposse.com" + name = "eg-prod-app" } ``` diff --git a/README.yaml b/README.yaml index 9e034cbd..823d1def 100644 --- a/README.yaml +++ b/README.yaml @@ -98,6 +98,7 @@ usage: |2- aliases = ["assets.cloudposse.com"] dns_alias_enabled = true parent_zone_name = "cloudposse.com" + name = "eg-prod-app" } ```