Skip to content

Commit 0907017

Browse files
chore: Updates repository to use supported Terraform versions (#3606)
Co-authored-by: maastha <[email protected]>
1 parent dc39e49 commit 0907017

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797

9898

9999
with:
100-
terraform_version: ${{ inputs.terraform_version || '1.12.x' }}
100+
terraform_version: ${{ inputs.terraform_version || '1.13.x' }}
101101
provider_version: ${{ inputs.provider_version }}
102102
ref: ${{ inputs.ref }}
103103
test_group: ${{ inputs.test_group }}

.github/workflows/code-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# Also speeds up the tests
3535
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd
3636
with:
37-
terraform_version: '1.12.x'
37+
terraform_version: '1.13.x'
3838
terraform_wrapper: false
3939
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
4040
with:

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go-version-file: 'go.mod'
2323
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd
2424
with:
25-
terraform_version: '1.12.x'
25+
terraform_version: '1.13.x'
2626
terraform_wrapper: false
2727
- name: tf-validate
2828
run: make tools tf-validate

.github/workflows/test-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
inputs:
1010
terraform_matrix:
1111
description: 'Terraform version matrix (JSON array)'
12-
default: '["1.12.x","1.11.x","1.10.x","1.9.x","1.8.x","1.7.x","1.6.x"]'
12+
default: '["1.13.x","1.12.x","1.11.x","1.10.x","1.9.x","1.8.x","1.7.x","1.6.x"]'
1313
provider_matrix:
1414
description: 'Previous MongoDB Atlas Provider version matrix for migration tests (JSON array)'
1515
default: '[""]' # "" for latest version
@@ -44,7 +44,7 @@ concurrency:
4444
jobs:
4545
variables:
4646
env:
47-
schedule_terraform_matrix: '["1.12.x"]'
47+
schedule_terraform_matrix: '["1.13.x"]'
4848
schedule_provider_matrix: '[""]' # "" for latest version
4949
runs-on: ubuntu-latest
5050
outputs:

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
terraform 1.12.2
1+
terraform 1.13.0

scripts/generate-doc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
set -euo pipefail
3434

35-
TF_VERSION="${TF_VERSION:-"1.12.2"}" # TF version to use when running tfplugindocs. Default: 1.12.2
35+
TF_VERSION="${TF_VERSION:-"1.13.0"}" # TF version to use when running tfplugindocs. Default: 1.13.0
3636
TEMPLATE_FOLDER_PATH="${TEMPLATE_FOLDER_PATH:-"templates"}" # PATH to the templates folder. Default: templates
3737

3838

scripts/generate-docs-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
set -euo pipefail
2828

29-
TF_VERSION="${TF_VERSION:-"1.12.2"}" # TF version to use when running tfplugindocs. Default: 1.12.2
29+
TF_VERSION="${TF_VERSION:-"1.13.0"}" # TF version to use when running tfplugindocs. Default: 1.13.0
3030
TEMPLATE_FOLDER_PATH="${TEMPLATE_FOLDER_PATH:-"templates"}" # PATH to the templates folder. Default: templates
3131

3232
trap 'rm -R docs-out/' EXIT # temp dir cleanup when script exits

0 commit comments

Comments
 (0)