File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/antonbabenko/pre-commit-terraform
3
- rev : v1.55 .0
3
+ rev : v1.56 .0
4
4
hooks :
5
5
- id : terraform_fmt
6
+ - id : terraform_validate
6
7
- id : terraform_docs
7
8
args :
8
9
- ' --args=--lockfile=false'
9
- - id : terraform_validate
10
10
- id : terraform_tflint
11
+ args :
12
+ - ' --args=--only=terraform_deprecated_interpolation'
13
+ - ' --args=--only=terraform_deprecated_index'
14
+ - ' --args=--only=terraform_unused_declarations'
15
+ - ' --args=--only=terraform_comment_syntax'
16
+ - ' --args=--only=terraform_documented_outputs'
17
+ - ' --args=--only=terraform_documented_variables'
18
+ - ' --args=--only=terraform_typed_variables'
19
+ - ' --args=--only=terraform_module_pinned_source'
20
+ - ' --args=--only=terraform_naming_convention'
21
+ - ' --args=--only=terraform_required_version'
22
+ - ' --args=--only=terraform_required_providers'
23
+ - ' --args=--only=terraform_standard_module_structure'
24
+ - ' --args=--only=terraform_workspace_remote'
11
25
- repo : https://github.com/pre-commit/pre-commit-hooks
12
26
rev : v4.0.1
13
27
hooks :
Original file line number Diff line number Diff line change @@ -23,13 +23,14 @@ Note that this example may create resources which will incur monetary charges on
23
23
| ------| ---------|
24
24
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
25
25
| <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.60 |
26
+ | <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 2.0 |
26
27
27
28
## Providers
28
29
29
30
| Name | Version |
30
31
| ------| ---------|
31
32
| <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.60 |
32
- | <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | n/a |
33
+ | <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 2.0 |
33
34
34
35
## Modules
35
36
Original file line number Diff line number Diff line change @@ -6,5 +6,9 @@ terraform {
6
6
source = " hashicorp/aws"
7
7
version = " >= 3.60"
8
8
}
9
+ random = {
10
+ source = " hashicorp/random"
11
+ version = " >= 2.0"
12
+ }
9
13
}
10
14
}
You can’t perform that action at this time.
0 commit comments