diff --git a/CHANGELOG.md b/CHANGELOG.md index c26cd07..3298c7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.0.3] - 2019-06-07 + +### Added +- Pass `var.aws_region` to `null_resource.mysql_ro_user` + ## [2.0.2] - 2019-06-06 ### Added diff --git a/db.tf b/db.tf index 1f2ac48..97634e7 100644 --- a/db.tf +++ b/db.tf @@ -145,6 +145,7 @@ resource "null_resource" "mysql_ro_user" { MYSQL_DB = "${var.apiary_database_name}" MYSQL_SECRET_ARN = "${data.aws_secretsmanager_secret.db_ro_user.arn}" MYSQL_PERMISSIONS = "SELECT" + AWS_REGION = "${var.aws_region}" } } }