Skip to content

Commit

Permalink
Merge pull request #15 from coveo/feature/add_tags_on_cluster
Browse files Browse the repository at this point in the history
Add db tags on aws rds cluster
  • Loading branch information
jmorissette authored Oct 9, 2018
2 parents ed7444f + 337cf65 commit 989a137
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rds_database_cluster/rds_database_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ resource "aws_rds_cluster" "rds_db_cluster" {
kms_key_id = "${lookup(var.optional_parameters, "kms_key_id", "")}"
iam_database_authentication_enabled = "${lookup(var.optional_parameters, "iam_database_authentication_enabled", false)}"
enabled_cloudwatch_logs_exports = ["${var.enabled_cloudwatch_logs_exports}"]

tags = "${var.db_tags}"
}

resource "aws_rds_cluster_instance" "rds_db_cluster_instance" {
Expand Down

0 comments on commit 989a137

Please sign in to comment.