Skip to content

Commit 2d2d94e

Browse files
update workflow versions (#9)
* update workflow versions * update * update * update * update * terraform-docs: automated action --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 18ae274 commit 2d2d94e

File tree

5 files changed

+1039
-12
lines changed

5 files changed

+1039
-12
lines changed

.github/workflows/scheduled-test.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,25 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Set up Go
1818
uses: actions/setup-go@v2
1919
with:
20-
go-version: '1.17'
20+
go-version: 1.18
2121

2222
- name: Install Terraform
23-
uses: hashicorp/setup-terraform@v1
23+
uses: hashicorp/setup-terraform@v3
2424
with:
25-
terraform_version: 1.1.5
25+
terraform_version: 0.13.1
2626

27-
- name: Install dependencies
28-
run: |
29-
go mod tidy
27+
- name: Download Go Modules
28+
working-directory: test
29+
run: go mod download
3030

3131
- name: Run Terratest
32-
run: |
33-
cd test
34-
go test -v
32+
working-directory: test
33+
run: go test -v
3534

3635
terraform-compliance:
3736
name: Run Terraform Compliance

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ No modules.
5454
| <a name="input_records_mx"></a> [records\_mx](#input\_records\_mx) | Map of MX records separate by comma (,) | `map(list(string))` | `{}` | no |
5555
| <a name="input_records_ns"></a> [records\_ns](#input\_records\_ns) | Map of NS records separate by comma (,) | `map(list(string))` | `{}` | no |
5656
| <a name="input_records_txt"></a> [records\_txt](#input\_records\_txt) | Map of TXT records separate by comma (,) | `map(list(string))` | `{}` | no |
57-
| <a name="input_records_wr"></a> [records\_wr](#input\_records\_wr) | Map of redirect records | `map(list(string))` | `{}` | no |
57+
| <a name="input_records_wr"></a> [records\_wr](#input\_records\_wr) | Map of redirect records | `map(string)` | `{}` | no |
5858
| <a name="input_ttl"></a> [ttl](#input\_ttl) | Default TTL for All records | `number` | `"3600"` | no |
5959
| <a name="input_ttl_acm"></a> [ttl\_acm](#input\_ttl\_acm) | Default TTL for acm records | `number` | `"60"` | no |
6060
| <a name="input_ttl_ns"></a> [ttl\_ns](#input\_ttl\_ns) | Default TTL for ns records | `number` | `"172800"` | no |

test/go.mod

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
module github.com/locus313/terraform-module-aws-route53/test
2+
3+
go 1.18
4+
5+
require (
6+
github.com/gruntwork-io/terratest v0.46.15
7+
github.com/stretchr/testify v1.9.0
8+
)
9+
10+
require (
11+
cloud.google.com/go v0.110.0 // indirect
12+
cloud.google.com/go/compute v1.19.1 // indirect
13+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
14+
cloud.google.com/go/iam v0.13.0 // indirect
15+
cloud.google.com/go/storage v1.28.1 // indirect
16+
github.com/agext/levenshtein v1.2.3 // indirect
17+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
18+
github.com/aws/aws-sdk-go v1.44.122 // indirect
19+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
20+
github.com/davecgh/go-spew v1.1.1 // indirect
21+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
22+
github.com/golang/protobuf v1.5.3 // indirect
23+
github.com/google/go-cmp v0.5.9 // indirect
24+
github.com/google/uuid v1.3.0 // indirect
25+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
26+
github.com/googleapis/gax-go/v2 v2.7.1 // indirect
27+
github.com/hashicorp/errwrap v1.0.0 // indirect
28+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
29+
github.com/hashicorp/go-getter v1.7.4 // indirect
30+
github.com/hashicorp/go-multierror v1.1.0 // indirect
31+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
32+
github.com/hashicorp/go-version v1.6.0 // indirect
33+
github.com/hashicorp/hcl/v2 v2.9.1 // indirect
34+
github.com/hashicorp/terraform-json v0.13.0 // indirect
35+
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect
36+
github.com/jmespath/go-jmespath v0.4.0 // indirect
37+
github.com/klauspost/compress v1.15.11 // indirect
38+
github.com/mattn/go-zglob v0.0.2-0.20190814121620-e3c945676326 // indirect
39+
github.com/mitchellh/go-homedir v1.1.0 // indirect
40+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
41+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
42+
github.com/pmezard/go-difflib v1.0.0 // indirect
43+
github.com/tmccombs/hcl2json v0.3.3 // indirect
44+
github.com/ulikunitz/xz v0.5.10 // indirect
45+
github.com/zclconf/go-cty v1.9.1 // indirect
46+
go.opencensus.io v0.24.0 // indirect
47+
golang.org/x/crypto v0.21.0 // indirect
48+
golang.org/x/net v0.23.0 // indirect
49+
golang.org/x/oauth2 v0.8.0 // indirect
50+
golang.org/x/sys v0.18.0 // indirect
51+
golang.org/x/text v0.14.0 // indirect
52+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
53+
google.golang.org/api v0.114.0 // indirect
54+
google.golang.org/appengine v1.6.7 // indirect
55+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
56+
google.golang.org/grpc v1.56.3 // indirect
57+
google.golang.org/protobuf v1.33.0 // indirect
58+
gopkg.in/yaml.v3 v3.0.1 // indirect
59+
)

0 commit comments

Comments
 (0)