Skip to content

Commit bcd0c2d

Browse files
committed
Bump up version to v0.24.2
1 parent 973c08e commit bcd0c2d

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.24.2 (2023-07-19)
2+
3+
### Enhancements
4+
5+
- [#505](https://github.com/terraform-linters/tflint-ruleset-aws/pull/505) [#513](https://github.com/terraform-linters/tflint-ruleset-aws/pull/513): Update AWS provider/module and generated content
6+
7+
### BugFixes
8+
9+
- [#511](https://github.com/terraform-linters/tflint-ruleset-aws/pull/511): fix: Fixed regression in tags with dynamic values ([@JorgeReus](https://github.com/JorgeReus))
10+
11+
### Chores
12+
13+
- [#512](https://github.com/terraform-linters/tflint-ruleset-aws/pull/512): Bump golang.org/x/net from 0.11.0 to 0.12.0
14+
115
## 0.24.1 (2023-07-01)
216

317
- [#508](https://github.com/terraform-linters/tflint-ruleset-aws/pull/508): fix: Fixed the error 'Provider doesn't exist' and the provider exist ([@JorgeReus](https://github.com/JorgeReus))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
1919
```hcl
2020
plugin "aws" {
2121
enabled = true
22-
version = "0.24.1"
22+
version = "0.24.2"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

integration/cty-based-eval/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.1/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.2/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/map-attribute/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_resource_missing_tags",
66
"severity": "info",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.1/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.2/docs/rules/aws_resource_missing_tags.md"
88
},
99
"message": "The resource is missing the following tags: \"Environment\", \"Name\", \"Type\".",
1010
"range": {

integration/rule-config/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"rule": {
55
"name": "aws_s3_bucket_name",
66
"severity": "warning",
7-
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.1/docs/rules/aws_s3_bucket_name.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.24.2/docs/rules/aws_s3_bucket_name.md"
88
},
99
"message": "Bucket name \"foo_bar\" does not match regex \"^[a-z\\-]+$\"",
1010
"range": {

project/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package project
33
import "fmt"
44

55
// Version is ruleset version
6-
const Version string = "0.24.1"
6+
const Version string = "0.24.2"
77

88
// ReferenceLink returns the rule reference link
99
func ReferenceLink(name string) string {

0 commit comments

Comments
 (0)