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: README.md
+13-13
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,11 @@ It is recommended to use GitHub secrets to store the `encryption_key` and `githu
24
24
25
25
### Usage
26
26
27
-
The following examples illustrates the best practices to use `terraform-state` to handle various scenarios of uploading and downloading a Terraform state file.
27
+
The following examples illustrate the best practices to use `terraform-state` to handle various scenarios of uploading and downloading a Terraform state file.
28
28
29
29
In addition, please note that while storing encrypted state within the repository ensures reasonable security, it is not recommended specifically for public repositories. Preferably, you should use artifacts. However, keep in mind that artifacts by default only last 90 days (can be changed in the repository settings).
30
30
31
-
When using storing the Terraform state within the repository, changes are commited to the current branch. To prevent endless loops when the GitHub Action is triggered to run on push, configure the following.
31
+
When storing the Terraform state within the repository, changes are commited to the current branch. To prevent endless loops when the GitHub Action is triggered to run on push, configure the following.
32
32
33
33
```yml
34
34
push:
@@ -39,19 +39,19 @@ push:
39
39
40
40
#### Artifact
41
41
42
-
Please see thie [Example Workflow](.github/workflows/artifact.yml).
42
+
Please see this [Example Workflow](.github/workflows/artifact.yml).
43
43
44
44
```yml
45
45
- name: Download Artifact
46
-
uses: badgerhobbs/terraform-state@v1
46
+
uses: badgerhobbs/terraform-state@v2
47
47
with:
48
48
operation: download
49
49
location: artifact
50
50
github_token: ${{ secrets.gh_access_token }}
51
51
continue-on-error: true
52
52
53
53
- name: Upload Artifact
54
-
uses: badgerhobbs/terraform-state@v1
54
+
uses: badgerhobbs/terraform-state@v2
55
55
with:
56
56
operation: upload
57
57
location: artifact
@@ -60,11 +60,11 @@ Please see thie [Example Workflow](.github/workflows/artifact.yml).
60
60
61
61
#### Artifact Encrypted
62
62
63
-
Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
63
+
Please see this [Example Workflow](.github/workflows/artifact_encrypted.yml).
0 commit comments