From ccec0d352b547395a852624c7b1b0c89c8585363 Mon Sep 17 00:00:00 2001 From: theprashantyadav Date: Thu, 19 Jan 2023 19:27:44 +0530 Subject: [PATCH 1/2] use terraform letast version --- README.yaml | 2 +- _example/example.tf | 2 +- _example/versions.tf | 6 +++--- main.tf | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.yaml b/README.yaml index 868f921..a150a0a 100644 --- a/README.yaml +++ b/README.yaml @@ -44,7 +44,7 @@ usage : |- ```hcl module "sftp" { source = "clouddrove/sftp/aws" - version = "0.15.0" + version = "1.3.0" name = "sftp" environment = "test" label_order = ["name", "environment"] diff --git a/_example/example.tf b/_example/example.tf index 0a47dee..50c9bf6 100644 --- a/_example/example.tf +++ b/_example/example.tf @@ -4,7 +4,7 @@ provider "aws" { module "s3_bucket" { source = "clouddrove/s3/aws" - version = "0.15.1" + version = "1.3.0" name = "clouddrove-sftp-bucket" environment = "test" diff --git a/_example/versions.tf b/_example/versions.tf index 59b550f..cbc6f9c 100644 --- a/_example/versions.tf +++ b/_example/versions.tf @@ -1,11 +1,11 @@ # Terraform version terraform { - required_version = ">= 0.14.11" + required_version = ">= 1.3.6" required_providers { aws = { source = "hashicorp/aws" - version = ">= 3.1.15" + version = ">= 4.48.0" } } -} +} \ No newline at end of file diff --git a/main.tf b/main.tf index 8e39a7b..405e32f 100644 --- a/main.tf +++ b/main.tf @@ -8,7 +8,7 @@ # convention. module "labels" { source = "clouddrove/labels/aws" - version = "0.15.0" + version = "1.3.0" name = var.name repository = var.repository From 62afa6cc95ff0f8541d51be06d2e90fab44c7eb2 Mon Sep 17 00:00:00 2001 From: theprashantyadav Date: Thu, 19 Jan 2023 20:06:47 +0530 Subject: [PATCH 2/2] use terraform letast version --- .github/workflows/terraform.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 11fb736..48995a7 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -59,6 +59,7 @@ jobs: - name: tflint uses: reviewdog/action-tflint@master with: + tflint_version: v0.29.0 github_token: ${{ secrets.GITHUB }} working_directory: ${{ matrix.directory }} fail_on_error: 'true'