File tree 4 files changed +19
-9
lines changed
4 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
2
3
3
references :
4
- circleci_docker_primary : &circleci_docker_primary trussworks/circleci-docker-primary:e66fbea875bcb788b29b1b5f59142e8231961ec5
4
+ circleci_docker_primary : &circleci_docker_primary trussworks/circleci-docker-primary:822fac1c30f3bb7d5d595bed5d2dc86265c4f2f0
5
5
6
6
jobs :
7
7
terratest :
Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : git://github.com/pre-commit/pre-commit-hooks
3
- rev : v2.5 .0
3
+ rev : v3.2 .0
4
4
hooks :
5
5
- id : check-json
6
6
- id : check-merge-conflict
@@ -12,17 +12,17 @@ repos:
12
12
- id : trailing-whitespace
13
13
14
14
- repo : git://github.com/igorshubovych/markdownlint-cli
15
- rev : v0.22.0
15
+ rev : v0.23.2
16
16
hooks :
17
17
- id : markdownlint
18
18
19
19
- repo : git://github.com/antonbabenko/pre-commit-terraform
20
- rev : v1.27 .0
20
+ rev : v1.31 .0
21
21
hooks :
22
22
- id : terraform_docs
23
23
- id : terraform_fmt
24
24
25
25
- repo : git://github.com/golangci/golangci-lint
26
- rev : v1.23.8
26
+ rev : v1.30.0
27
27
hooks :
28
28
- id : golangci-lint
Original file line number Diff line number Diff line change @@ -27,16 +27,23 @@ module "acm_cert" {
27
27
```
28
28
29
29
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
30
+ ## Requirements
31
+
32
+ | Name | Version |
33
+ | ------| ---------|
34
+ | terraform | ~ > 0.12.0 |
35
+ | aws | ~ > 2.70 |
36
+
30
37
## Providers
31
38
32
39
| Name | Version |
33
40
| ------| ---------|
34
- | aws | n/a |
41
+ | aws | ~ > 2.70 |
35
42
36
43
## Inputs
37
44
38
45
| Name | Description | Type | Default | Required |
39
- | ------| -------------| ------| ---------| :-----:|
46
+ | ------| -------------| ------| ---------| :-------- :|
40
47
| alb\_ listener\_ arn | (Optional) Associate ACM certificate to and ALB listener. | ` string ` | ` "" ` | no |
41
48
| caa\_ records | Add CAA records to route53. | ` list(string) ` | ` [] ` | no |
42
49
| domain\_ name | Domain name to associate with the ACM certificate. | ` string ` | n/a | yes |
Original file line number Diff line number Diff line change 1
-
2
1
terraform {
3
- required_version = " >= 0.12"
2
+ required_version = " ~> 0.12.0"
3
+
4
+ required_providers {
5
+ aws = " ~> 2.70"
6
+ }
4
7
}
You can’t perform that action at this time.
0 commit comments