From f7a9a2fb830082a49a416f8e35c9411aea04470b Mon Sep 17 00:00:00 2001 From: Jan Costandius Date: Wed, 30 Oct 2024 15:49:19 +0200 Subject: [PATCH] [1.0.1] Updated readme --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index efef93e..9032982 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.0.1] - 2024-10-30 +### Changed + - Advanced example in [`README.md`](README.md) now uses the correct source. + ## [1.0.0] - 2024-10-30 ### Added diff --git a/README.md b/README.md index 782ff42..70c0a73 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Relational Database Service (RDS)

- Releases + Releases License

@@ -68,7 +68,7 @@ module "terraform_trailwatch_rds" { ```hcl # database type: `instance` module "aws_monitoring_rds" { - source = "path/to/module" + source = "terraform-trailwatch-modules/rds/aws" rds_db_identifiers = ["acme-database-1"] rds_db_instance_events = ["DeleteDBInstance", "ModifyDBInstance"] cw_log_group_name = "the-cloudtrail-log-group" @@ -84,7 +84,7 @@ module "aws_monitoring_rds" { # database type: `cluster` module "aws_monitoring_rds" { - source = "path/to/module" + source = "terraform-trailwatch-modules/rds/aws" rds_db_identifiers = ["acme-database-1"] rds_db_type = "cluster" rds_db_cluster_events = ["CreateDBCluster", "DeleteDBCluster"]