Skip to content

Commit

Permalink
Add var.aws_region to null_resource.mysql_ro_user (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeepbhadani authored Jun 10, 2019
1 parent 3f7cd47 commit 57fe14d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
}
}
}

0 comments on commit 57fe14d

Please sign in to comment.