diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a892287f85e1074edaad775e5f348dde0c136af..fc6ead4480dc3a5e102e4c47d439db84a32325e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.8.2] - 2024-04-10 + +### Fixed + +- `terraform-pipeline.yml`: `tflint` rule `terraform_standard_module_structure` is now disabled. + ## [3.8.1] - 2024-04-08 ### Fixed diff --git a/auto-devops/terraform-pipeline.yml b/auto-devops/terraform-pipeline.yml index 42beb100f9505b8a35e3cdd5fc9deef00be96837..a04279afc00acbf17f5b204f423d97a73dcc265d 100644 --- a/auto-devops/terraform-pipeline.yml +++ b/auto-devops/terraform-pipeline.yml @@ -215,7 +215,7 @@ tflint: fi script: | tflint --init - tflint --recursive + tflint --recursive --disable-rule=terraform_standard_module_structure rules: - if: $TFLINT_DISABLED when: never