Skip to content

Commit 3bd05a4

Browse files
fix: pin terraform CLI version to 1.14.9 in ci/cd pipelines (#136)
Replaces 'latest' default with pinned version 1.14.9 across GitHub Actions and Azure DevOps pipeline templates for ci.yaml and cd.yaml to ensure deterministic builds.
1 parent a8d968f commit 3bd05a4

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

alz/azuredevops/pipelines/terraform/main/cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ parameters:
2121
- name: terraform_cli_version
2222
displayName: Terraform CLI Version
2323
type: string
24-
default: 'latest'
24+
default: '1.14.9'
2525

2626
lockBehavior: sequential
2727

alz/azuredevops/pipelines/terraform/main/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ parameters:
1212
- name: terraform_cli_version
1313
displayName: Terraform CLI Version
1414
type: string
15-
default: 'latest'
15+
default: '1.14.9'
1616

1717
lockBehavior: sequential
1818

alz/github/actions/terraform/main/workflows/cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
terraform_cli_version:
1818
description: 'Terraform CLI Version'
1919
required: true
20-
default: 'latest'
20+
default: '1.14.9'
2121
type: string
2222

2323
jobs:

alz/github/actions/terraform/main/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
terraform_cli_version:
1010
description: 'Terraform CLI Version'
1111
required: true
12-
default: 'latest'
12+
default: '1.14.9'
1313
type: string
1414

1515
jobs:

0 commit comments

Comments
 (0)