From fe6d354da53c7ae7b3307381e34242a3a278c700 Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Mon, 4 Jan 2021 20:58:56 -0500 Subject: [PATCH] chore: update README usage example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a8f2ce3..5f86b0e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ See [`examples`](./examples) directory for working examples to reference: ```hcl module "rds_proxy" { - source = "clowdhaus/rds-proxy/aws" + source = "clowdhaus/rds-proxy/aws" name = "rds-proxy" iam_role_name = "rds-proxy-role" @@ -23,7 +23,7 @@ module "rds_proxy" { secrets = { "superuser" = { - description = "Aurora PostgreSQL superuser password + description = "Aurora PostgreSQL superuser password" arn = "arn:aws:secretsmanager:us-east-1:123456789012:secret:superuser-6gsjLD" kms_key_id = "6ca29066-552a-46c5-a7d7-7bf9a15fc255" } @@ -38,7 +38,7 @@ module "rds_proxy" { db_cluster_identifier = "myendpoint" tags = { - Terraform = "true" + Terraform = "true" Environment = "dev" } }