diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1995474..93900a8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.83.6 + rev: v1.86.0 hooks: - id: terraform_fmt - id: terraform_validate @@ -27,3 +27,4 @@ repos: hooks: - id: check-merge-conflict - id: end-of-file-fixer + - id: trailing-whitespace diff --git a/CHANGELOG.md b/CHANGELOG.md index 2396925..2b97541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -538,7 +538,7 @@ All notable changes to this project will be documented in this file - Add cluster ARN output as 'this_rds_cluster_arn' ([#48](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/issues/48)) - Upgraded module to support Terraform 0.12 ([#45](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/issues/45)) -### +### on ../../modules/aws-rds-aurora/main.tf line 4, in locals: @@ -586,7 +586,7 @@ when calling import with this module in the configuration. - Add cluster ARN output as 'this_rds_cluster_arn' ([#48](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/issues/48)) - Upgraded module to support Terraform 0.12 ([#45](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/issues/45)) -### +### on ../../modules/aws-rds-aurora/main.tf line 4, in locals: diff --git a/main.tf b/main.tf index b4a734a..a93f3cf 100644 --- a/main.tf +++ b/main.tf @@ -278,6 +278,12 @@ resource "aws_appautoscaling_target" "this" { service_namespace = "rds" tags = var.tags + + lifecycle { + ignore_changes = [ + tags_all, + ] + } } resource "aws_appautoscaling_policy" "this" {