diff --git a/README.md b/README.md index a2c4cbc..8f92135 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ You can enable the Serverless Rules plugin by adding a plugin section in the `.t ```terraform plugin "aws-serverless" { enabled = true - version = "0.2.2" + version = "0.3.0" source = "github.com/awslabs/serverless-rules" } ``` diff --git a/cfn-lint-serverless/pyproject.toml b/cfn-lint-serverless/pyproject.toml index ab13242..f349f2f 100644 --- a/cfn-lint-serverless/pyproject.toml +++ b/cfn-lint-serverless/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cfn_lint_serverless" -version = "0.2.2" +version = "0.3.0" description = "Serverless rules for cfn-lint" authors = ["Amazon Web Services"] readme = "README.md" diff --git a/docs/tflint.md b/docs/tflint.md index 258bb52..ea7d759 100644 --- a/docs/tflint.md +++ b/docs/tflint.md @@ -10,7 +10,7 @@ You can enable the Serverless Rules plugin by adding a plugin section in the `.t ```terraform plugin "aws-serverless" { enabled = true - version = "0.2.2" + version = "0.3.0" source = "github.com/awslabs/serverless-rules" } ``` @@ -76,7 +76,7 @@ Rules in `tflint` can be disabled either through the `--disable-rule` command-li ```terraform plugin "aws-serverless" { enabled = true - version = "0.2.2" + version = "0.3.0" source = "github.com/awslabs/serverless-rules" } diff --git a/examples/tflint/.tflint.hcl b/examples/tflint/.tflint.hcl index 2637a10..de3be38 100644 --- a/examples/tflint/.tflint.hcl +++ b/examples/tflint/.tflint.hcl @@ -6,5 +6,5 @@ plugin "aws-serverless" { enabled = true # Uncomment those lines if you are using tflint 0.29 or later # source = "github.com/awslabs/serverless-rules" - # version = "0.2.2" + # version = "0.3.0" } \ No newline at end of file diff --git a/tflint-ruleset-aws-serverless/main.go b/tflint-ruleset-aws-serverless/main.go index ac6110f..c1c6566 100644 --- a/tflint-ruleset-aws-serverless/main.go +++ b/tflint-ruleset-aws-serverless/main.go @@ -10,7 +10,7 @@ func main() { plugin.Serve(&plugin.ServeOpts{ RuleSet: &tflint.BuiltinRuleSet{ Name: "aws-serverless", - Version: "0.2.2", + Version: "0.3.0", Rules: rules.Rules, }, })