Skip to content

Commit

Permalink
Bump up version to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Mar 27, 2022
1 parent 18b19a5 commit 31233ac
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 0.13.0 (2022-03-27)

The minimum supported version of TFLint has changed in this version. TFLint v0.35.0+ is required for this plugin to work.

### Breaking Changes

- [#274](https://github.com/terraform-linters/tflint-ruleset-aws/pull/274): Bump tflint-plugin-sdk for gRPC-based new plugin system ([@wata727](https://github.com/wata727))
- [#310](https://github.com/terraform-linters/tflint-ruleset-aws/pull/310): aws_spot_instance_request.instance_interruption_behaviour renamed ([@PatMyron](https://github.com/PatMyron))
- [#317](https://github.com/terraform-linters/tflint-ruleset-aws/pull/317) [#318](https://github.com/terraform-linters/tflint-ruleset-aws/pull/318): Update aws-sdk-go and AWS provider rules ([@wata727](https://github.com/wata727))
- Removed `aws_amplify_domain_association_invalid_domain_name` rule.

### Enhancements

- [#309](https://github.com/terraform-linters/tflint-ruleset-aws/pull/309): refactor previous generation instance type rules ([@PatMyron](https://github.com/PatMyron))
- [#315](https://github.com/terraform-linters/tflint-ruleset-aws/pull/315): rules: Add new `aws_elastic_beanstalk_environment_invalid_name_format` rule ([@samhpickering](https://github.com/samhpickering))

### Chores

- [#312](https://github.com/terraform-linters/tflint-ruleset-aws/pull/312): Bump actions/checkout from 2 to 3
- [#313](https://github.com/terraform-linters/tflint-ruleset-aws/pull/313): Bump github.com/hashicorp/aws-sdk-go-base from 1.0.0 to 1.1.0
- [#314](https://github.com/terraform-linters/tflint-ruleset-aws/pull/314): go 1.18 ([@PatMyron](https://github.com/PatMyron))
- [#319](https://github.com/terraform-linters/tflint-ruleset-aws/pull/319): Bump GoReleaser version ([@wata727](https://github.com/wata727))

## 0.12.0 (2022-01-28)

### Enhancements
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This ruleset focus on possible errors and best practices about AWS resources. Ma

## Requirements

- TFLint v0.30+
- TFLint v0.35+
- Go v1.18

## Installation
Expand All @@ -19,15 +19,13 @@ You can install the plugin by adding a config to `.tflint.hcl` and running `tfli
```hcl
plugin "aws" {
enabled = true
version = "0.12.0"
version = "0.13.0"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
```

For more configuration about the plugin, see [Plugin Configuration](docs/configuration.md).

**NOTE:** This plugin is bundled with the TFLint binary for backward compatibility, so you can use it without installing it separately. And it is automatically enabled when your Terraform configuration requires AWS provider.

## Getting Started

Terraform is a great tool for Infrastructure as Code. However, many of these tools don't validate provider-specific issues. For example, see the following configuration file:
Expand Down
2 changes: 1 addition & 1 deletion project/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package project
import "fmt"

// Version is ruleset version
const Version string = "0.12.0"
const Version string = "0.13.0"

// ReferenceLink returns the rule reference link
func ReferenceLink(name string) string {
Expand Down

0 comments on commit 31233ac

Please sign in to comment.