From 51de1bd9bcd560fa55068c29ae82d279e53a9fe4 Mon Sep 17 00:00:00 2001 From: Yonatan Koren Date: Fri, 22 Oct 2021 13:46:40 -0400 Subject: [PATCH] Docs: Fix usage snippet (missing source attribute) (#25) * Fix usage snippet (missing source attribute) * Fix module block name in usage snippet (does not match module name) Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> --- README.md | 3 ++- README.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 551fbb8..daab78d 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,8 @@ The table below correctly indicates which inputs are required. ```terraform -module "cloudwatch_log" { +module "cloudwatch_logs" { + source = "cloudposse/cloudwatch-logs/aws" # Cloud Posse recommends pinning every module to a specific version # version = "x.x.x" diff --git a/README.yaml b/README.yaml index 92f6ff7..8c8b05e 100644 --- a/README.yaml +++ b/README.yaml @@ -95,7 +95,8 @@ description: |- # How to use this project usage: |- ```terraform - module "cloudwatch_log" { + module "cloudwatch_logs" { + source = "cloudposse/cloudwatch-logs/aws" # Cloud Posse recommends pinning every module to a specific version # version = "x.x.x"