Skip to content

Commit 878baa9

Browse files
Merge pull request #19 from trussworks/am-updating-version-restraints-and-cleanup
updated/cleaned circleci and readme to allow tf14
2 parents 90993de + 5a730d6 commit 878baa9

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

.circleci/config.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
version: 2.1
2+
13
jobs:
24
validate:
35
docker:
4-
- auth:
5-
password: $DOCKER_PASSWORD
6-
username: $DOCKER_USERNAME
7-
image: trussworks/circleci:6986bb9022e5a83599feb66a7128a2d0fa12732a
6+
- auth:
7+
password: $DOCKER_PASSWORD
8+
username: $DOCKER_USERNAME
9+
- image: trussworks/circleci:efb1042e31538677779971798e0912390f699e72
10+
811
steps:
912
- checkout
1013
- restore_cache:

.pre-commit-config.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
types: [go]
99

1010
- repo: git://github.com/pre-commit/pre-commit-hooks
11-
rev: v3.2.0
11+
rev: v3.4.0
1212
hooks:
1313
- id: check-json
1414
- id: check-merge-conflict
@@ -20,18 +20,21 @@ repos:
2020
- id: trailing-whitespace
2121

2222
- repo: git://github.com/igorshubovych/markdownlint-cli
23-
rev: v0.24.0
23+
rev: v0.26.0
24+
2425
hooks:
2526
- id: markdownlint
2627

2728
- repo: git://github.com/antonbabenko/pre-commit-terraform
28-
rev: v1.43.0
29+
rev: v1.45.0
30+
2931
hooks:
3032
- id: terraform_docs
3133
- id: terraform_fmt
3234

3335
- repo: git://github.com/golangci/golangci-lint
34-
rev: v1.31.0
36+
rev: v1.33.0
37+
3538
hooks:
3639
- id: golangci-lint
3740

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,15 @@ module "github_terraform_aws_ou_scp" {
9494

9595
| Name | Version |
9696
|------|---------|
97-
| terraform | >= 0.12.7, < 0.14 |
98-
| aws | >= 2.68, < 4.0 |
97+
| terraform | >= 0.13.0 |
98+
| aws | >= 3.0 |
9999

100100
## Providers
101101

102102
| Name | Version |
103103
|------|---------|
104-
| aws | >= 2.68, < 4.0 |
104+
| aws | >= 3.0 |
105+
105106

106107
## Inputs
107108

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module terraform_aws_ou_ouscp
22

3-
go 1.14
3+
go 1.15

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
required_version = ">= 0.12.7, < 0.14"
2+
required_version = ">= 0.13.0"
33

44
required_providers {
5-
aws = ">= 2.68, < 4.0"
5+
aws = ">= 3.0"
66
}
77
}

0 commit comments

Comments
 (0)