Skip to content

Commit c45314b

Browse files
committed
feat: update README
Update action version numbers and fix misc typos
1 parent 152342d commit c45314b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ It is recommended to use GitHub secrets to store the `encryption_key` and `githu
2424

2525
### Usage
2626

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.
2828

2929
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).
3030

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.
3232

3333
```yml
3434
push:
@@ -39,19 +39,19 @@ push:
3939
4040
#### Artifact
4141
42-
Please see thie [Example Workflow](.github/workflows/artifact.yml).
42+
Please see this [Example Workflow](.github/workflows/artifact.yml).
4343
4444
```yml
4545
- name: Download Artifact
46-
uses: badgerhobbs/terraform-state@v1
46+
uses: badgerhobbs/terraform-state@v2
4747
with:
4848
operation: download
4949
location: artifact
5050
github_token: ${{ secrets.gh_access_token }}
5151
continue-on-error: true
5252

5353
- name: Upload Artifact
54-
uses: badgerhobbs/terraform-state@v1
54+
uses: badgerhobbs/terraform-state@v2
5555
with:
5656
operation: upload
5757
location: artifact
@@ -60,11 +60,11 @@ Please see thie [Example Workflow](.github/workflows/artifact.yml).
6060
6161
#### Artifact Encrypted
6262
63-
Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
63+
Please see this [Example Workflow](.github/workflows/artifact_encrypted.yml).
6464
6565
```yml
6666
- name: Download Encrypted Artifact & Decrypt Artifact
67-
uses: badgerhobbs/terraform-state@v1
67+
uses: badgerhobbs/terraform-state@v2
6868
with:
6969
encryption_key: ${{ secrets.encryption_key }}
7070
operation: download
@@ -73,7 +73,7 @@ Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
7373
continue-on-error: true
7474

7575
- name: Encrypt Artifact & Upload Encrypted Artifact
76-
uses: badgerhobbs/terraform-state@v1
76+
uses: badgerhobbs/terraform-state@v2
7777
with:
7878
encryption_key: ${{ secrets.encryption_key }}
7979
operation: upload
@@ -83,31 +83,31 @@ Please see thie [Example Workflow](.github/workflows/artifact_encrypted.yml).
8383
8484
#### Repository File
8585
86-
Please see thie [Example Workflow](.github/workflows/repository_file.yml).
86+
Please see this [Example Workflow](.github/workflows/repository_file.yml).
8787
8888
```yml
8989
- name: Commit Repository File
90-
uses: badgerhobbs/terraform-state@v1
90+
uses: badgerhobbs/terraform-state@v2
9191
with:
9292
operation: upload
9393
location: repository
9494
```
9595
9696
#### Repository File Encrypted
9797
98-
Please see thie [Example Workflow](.github/workflows/repository_file_encrypted.yml).
98+
Please see this [Example Workflow](.github/workflows/repository_file_encrypted.yml).
9999
100100
```yml
101101
- name: Decrypt Repository File
102-
uses: badgerhobbs/terraform-state@v1
102+
uses: badgerhobbs/terraform-state@v2
103103
with:
104104
encryption_key: ${{ secrets.encryption_key }}
105105
operation: download
106106
location: repository
107107
continue-on-error: true
108108

109109
- name: Encrypt and Commit Repository File
110-
uses: badgerhobbs/terraform-state@v1
110+
uses: badgerhobbs/terraform-state@v2
111111
with:
112112
encryption_key: ${{ secrets.encryption_key }}
113113
operation: upload

0 commit comments

Comments
 (0)