Skip to content

Commit feaaefc

Browse files
authored
Terraform 0.14 upgrade (#90)
1 parent 4991400 commit feaaefc

File tree

5 files changed

+4
-13
lines changed

5 files changed

+4
-13
lines changed

.github/workflows/auto-context.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fi
3535
3636
- name: Create Pull Request
37-
if: steps.update.outputs.create_pull_request == 'true'
37+
if: {{ steps.update.outputs.create_pull_request == 'true' }}
3838
uses: cloudposse/actions/github/[email protected]
3939
with:
4040
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}

.github/workflows/validate-codeowners.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,10 @@ jobs:
99
- name: "Checkout source code at current commit"
1010
uses: actions/checkout@v2
1111
- uses: mszostok/[email protected]
12-
if: github.event.pull_request.head.repo.full_name == github.repository
13-
name: "Full check of CODEOWNERS"
1412
with:
1513
# For now, remove "files" check to allow CODEOWNERS to specify non-existent
1614
# files so we can use the same CODEOWNERS file for Terraform and non-Terraform repos
1715
# checks: "files,syntax,owners,duppatterns"
1816
checks: "syntax,owners,duppatterns"
1917
# GitHub access token is required only if the `owners` check is enabled
2018
github_access_token: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}"
21-
- uses: mszostok/[email protected]
22-
if: github.event.pull_request.head.repo.full_name != github.repository
23-
name: "Syntax check of CODEOWNERS"
24-
with:
25-
checks: "syntax,duppatterns"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
338338

339339
## Copyright
340340

341-
Copyright © 2017-2020 [Cloud Posse, LLC](https://cpco.io/copyright)
341+
Copyright © 2017-2021 [Cloud Posse, LLC](https://cpco.io/copyright)
342342

343343

344344

context.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
# will be null, and `module.this.delimiter` will be `-` (hyphen).
1919
#
2020

21-
2221
module "this" {
2322
source = "cloudposse/label/null"
24-
version = "0.22.0" // requires Terraform >= 0.12.26
23+
version = "0.22.1" // requires Terraform >= 0.12.26
2524

2625
enabled = var.enabled
2726
namespace = var.namespace

examples/complete/context.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
# will be null, and `module.this.delimiter` will be `-` (hyphen).
1919
#
2020

21-
2221
module "this" {
2322
source = "cloudposse/label/null"
24-
version = "0.22.0" // requires Terraform >= 0.12.26
23+
version = "0.22.1" // requires Terraform >= 0.12.26
2524

2625
enabled = var.enabled
2726
namespace = var.namespace

0 commit comments

Comments
 (0)