You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/secure-setup-terraform/action.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,9 @@ inputs:
19
19
description: 'The terraform version to install'
20
20
default: '1.3.3'
21
21
required: false
22
+
terraform_lockfile_location:
23
+
description: 'Path to the directory containing the .terraform.lock.hcl file. This action will mark this file readonly to prevent terraform init calls from adding new providers.'
24
+
required: true
22
25
23
26
runs:
24
27
using: 'composite'
@@ -56,5 +59,8 @@ runs:
56
59
CHECKSUM=$(jq -r --arg version ${{ inputs.terraform_version }} '.versions[] | select(.version==$version and .arch=="amd64" and .os=="linux") | .binary_checksum' < terraform-checksums.json)
0 commit comments