From 02a5c9cf2144a186a461ceec2662a886e65b4a35 Mon Sep 17 00:00:00 2001 From: Marty Sandidge Date: Mon, 5 Dec 2022 18:21:04 -0700 Subject: [PATCH] remove deprecated hashicorp/template provider (#17) * remove deprecated hashicorp/template provider * Auto Format * remove unused hashicorp/null provider * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> --- .github/auto-release.yml | 1 - .github/renovate.json | 2 +- .github/workflows/validate-codeowners.yml | 1 + README.md | 5 ++--- docs/terraform.md | 2 -- versions.tf | 8 -------- 6 files changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/auto-release.yml b/.github/auto-release.yml index b45efb7..17cd39c 100644 --- a/.github/auto-release.yml +++ b/.github/auto-release.yml @@ -17,7 +17,6 @@ version-resolver: - 'bugfix' - 'bug' - 'hotfix' - - 'no-release' default: 'minor' categories: diff --git a/.github/renovate.json b/.github/renovate.json index ae4f0aa..a780298 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -4,9 +4,9 @@ ":preserveSemverRanges" ], "labels": ["auto-update"], + "dependencyDashboardAutoclose": true, "enabledManagers": ["terraform"], "terraform": { "ignorePaths": ["**/context.tf", "examples/**"] } } - diff --git a/.github/workflows/validate-codeowners.yml b/.github/workflows/validate-codeowners.yml index 70f829e..4b4a226 100644 --- a/.github/workflows/validate-codeowners.yml +++ b/.github/workflows/validate-codeowners.yml @@ -10,6 +10,7 @@ jobs: steps: - name: "Checkout source code at current commit" uses: actions/checkout@v2 + # Leave pinned at 0.7.1 until https://github.com/mszostok/codeowners-validator/issues/173 is resolved - uses: mszostok/codeowners-validator@v0.7.1 if: github.event.pull_request.head.repo.full_name == github.repository name: "Full check of CODEOWNERS" diff --git a/README.md b/README.md index 48650e3..85991b6 100644 --- a/README.md +++ b/README.md @@ -168,8 +168,6 @@ Available targets: |------|---------| | [terraform](#requirement\_terraform) | >= 0.12.26 | | [aws](#requirement\_aws) | >= 2.0 | -| [null](#requirement\_null) | >= 2.0 | -| [template](#requirement\_template) | >= 2.0 | ## Providers @@ -401,7 +399,7 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply [![README Footer][readme_footer_img]][readme_footer_link] [![Beacon][beacon]][website] - + [logo]: https://cloudposse.com/logo-300x69.svg [docs]: https://cpco.io/docs?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-iam-account-settings&utm_content=docs [website]: https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-iam-account-settings&utm_content=website @@ -432,3 +430,4 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply [share_googleplus]: https://plus.google.com/share?url=https://github.com/cloudposse/terraform-aws-iam-account-settings [share_email]: mailto:?subject=terraform-aws-iam-account-settings&body=https://github.com/cloudposse/terraform-aws-iam-account-settings [beacon]: https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse/terraform-aws-iam-account-settings?pixel&cs=github&cm=readme&an=terraform-aws-iam-account-settings + diff --git a/docs/terraform.md b/docs/terraform.md index 96ee79a..309f1ac 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -5,8 +5,6 @@ |------|---------| | [terraform](#requirement\_terraform) | >= 0.12.26 | | [aws](#requirement\_aws) | >= 2.0 | -| [null](#requirement\_null) | >= 2.0 | -| [template](#requirement\_template) | >= 2.0 | ## Providers diff --git a/versions.tf b/versions.tf index 9b6d904..9a98376 100644 --- a/versions.tf +++ b/versions.tf @@ -6,13 +6,5 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } - null = { - source = "hashicorp/null" - version = ">= 2.0" - } } }