Skip to content

Commit 61b3dc6

Browse files
committed
Add terratest
1 parent e2678e5 commit 61b3dc6

File tree

4 files changed

+1325
-0
lines changed

4 files changed

+1325
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ override.tf.json
3636
.terraformrc
3737
terraform.rc
3838

39+
test_report.html
40+
41+
.idea

test/go.mod

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
module github.com/aws-ia/terraform-aws-terraform/m/v2
2+
3+
go 1.17
4+
5+
require (
6+
github.com/aws/aws-sdk-go v1.41.14
7+
github.com/gruntwork-io/terratest v0.38.2
8+
github.com/stretchr/testify v1.7.0
9+
)
10+
11+
require (
12+
github.com/agext/levenshtein v1.2.3 // indirect
13+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
14+
github.com/davecgh/go-spew v1.1.1 // indirect
15+
github.com/hashicorp/errwrap v1.0.0 // indirect
16+
github.com/hashicorp/go-multierror v1.1.0 // indirect
17+
github.com/hashicorp/hcl/v2 v2.9.1 // indirect
18+
github.com/hashicorp/terraform-json v0.12.0 // indirect
19+
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect
20+
github.com/jmespath/go-jmespath v0.4.0 // indirect
21+
github.com/mattn/go-zglob v0.0.2-0.20190814121620-e3c945676326 // indirect
22+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
23+
github.com/pmezard/go-difflib v1.0.0 // indirect
24+
github.com/tmccombs/hcl2json v0.3.3 // indirect
25+
github.com/zclconf/go-cty v1.8.1 // indirect
26+
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
27+
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
28+
golang.org/x/sys v0.0.0-20210603125802-9665404d3644 // indirect
29+
golang.org/x/text v0.3.6 // indirect
30+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
31+
)

0 commit comments

Comments
 (0)