Skip to content

Commit

Permalink
fix: change default Terraform version to 1.9.6
Browse files Browse the repository at this point in the history
Signed-off-by: team-tf-cdk <github-team-tf-cdk@hashicorp.com>
  • Loading branch information
team-tf-cdk committed Sep 29, 2024
1 parent 4789b15 commit b9792da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const inputs = {
},
terraformVersion: {
description: "The version of Terraform to use",
default: "1.9.5",
default: "1.9.6",
required: false,
type: "string",
},
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Terraform CDK GitHub Action allows you to run CDKTF as part of your CI/CD wo
| parameter | description | required | default |
| --- | --- | --- | --- |
| cdktfVersion | The version of CDKTF to use | `false` | 0.20.9 |
| terraformVersion | The version of Terraform to use | `false` | 1.9.5 |
| terraformVersion | The version of Terraform to use | `false` | 1.9.6 |
| workingDirectory | The directory to use for the project | `false` | ./ |
| mode | What action to take: `synth-only` runs only the synthesis, `plan-only` only runs a plan, `auto-approve-apply` runs a plan and then performs an apply, `auto-approve-destroy` runs a plan and then performs a destroy | `true` | |
| stackName | The stack to run / plan, only required when the mode is `plan-only` or `plan-and-apply` | `false` | |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
uses: hashicorp/terraform-cdk-action@v5
with:
cdktfVersion: 0.20.9
terraformVersion: 1.9.5
terraformVersion: 1.9.6
mode: plan-only
stackName: my-stack
terraformCloudToken: ${{ secrets.TF_API_TOKEN }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
uses: hashicorp/terraform-cdk-action@v5
with:
cdktfVersion: 0.20.9
terraformVersion: 1.9.5
terraformVersion: 1.9.6
mode: auto-approve-apply
stackName: my-stack
terraformCloudToken: ${{ secrets.TF_API_TOKEN }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
uses: hashicorp/terraform-cdk-action@v5
with:
cdktfVersion: 0.20.9
terraformVersion: 1.9.5
terraformVersion: 1.9.6
mode: synth-only
stackName: my-stack
```
Expand Down
2 changes: 1 addition & 1 deletion action.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b9792da

Please sign in to comment.