Skip to content

Commit a042cdb

Browse files
committed
Bump up version to v0.15.0
1 parent 2a983b1 commit a042cdb

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.15.0 (2022-07-15)
2+
3+
### Enhancements
4+
5+
- [#352](https://github.com/terraform-linters/tflint-ruleset-aws/pull/352): autogenerated maintenance
6+
- [#355](https://github.com/terraform-linters/tflint-ruleset-aws/pull/355): Add `aws_security_group_rule_invalid_protocol` rule ([@x-color](https://github.com/x-color))
7+
- [#356](https://github.com/terraform-linters/tflint-ruleset-aws/pull/356): Add `aws_security_group_invalid_protocol` rule ([@x-color](https://github.com/x-color))
8+
9+
### Chores
10+
11+
- [#354](https://github.com/terraform-linters/tflint-ruleset-aws/pull/354): Bump github.com/hashicorp/hcl/v2 from 2.12.0 to 2.13.0
12+
113
## 0.14.0 (2022-05-31)
214

315
### Enhancements

README.md

+1-1
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.14.0"
22+
version = "0.15.0"
2323
source = "github.com/terraform-linters/tflint-ruleset-aws"
2424
}
2525
```

integration/cty-based-eval/result.json

+1-1
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.14.0/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.15.0/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

+1-1
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.14.0/docs/rules/aws_resource_missing_tags.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.15.0/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

+1-1
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.14.0/docs/rules/aws_s3_bucket_name.md"
7+
"link": "https://github.com/terraform-linters/tflint-ruleset-aws/blob/v0.15.0/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

+1-1
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.14.0"
6+
const Version string = "0.15.0"
77

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

0 commit comments

Comments
 (0)