-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: pre-commit autoupdate and terraform_docs (#247)
* feat: pre-commit autoupdate and terraform_docs
- Loading branch information
1 parent
8d84f1b
commit fe7c309
Showing
6 changed files
with
81 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,35 @@ | ||
version: ">= 0.19.0, < 1.0.0" | ||
|
||
settings: | ||
html: false | ||
anchor: false | ||
escape: false | ||
lockfile: false | ||
hide-empty: true | ||
formatter: "markdown table" | ||
|
||
sort: | ||
enabled: true | ||
by: required | ||
|
||
sections: | ||
show: | ||
- requirements | ||
- providers | ||
- modules | ||
- data-sources | ||
- resources | ||
- inputs | ||
- outputs | ||
|
||
recursive: | ||
enabled: false | ||
include-main: false | ||
|
||
output: | ||
file: README.md | ||
mode: inject | ||
template: |- | ||
<!-- BEGIN_TF_DOCS --> | ||
{{ .Content }} | ||
<!-- END_TF_DOCS --> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# simple | ||
|
||
<!-- BEGIN_TF_DOCS --> | ||
|
||
|
||
## Modules | ||
|
||
| Name | Source | Version | | ||
|------|--------|---------| | ||
| aws_cloudtrail | ../../ | n/a | | ||
| logs | trussworks/logs/aws | ~> 12 | | ||
|
||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|------|---------|:--------:| | ||
| cloudwatch_log_group_name | n/a | `string` | n/a | yes | | ||
| logs_bucket | n/a | `string` | n/a | yes | | ||
| s3_key_prefix | n/a | `string` | n/a | yes | | ||
| trail_name | n/a | `string` | n/a | yes | | ||
|
||
## Outputs | ||
|
||
| Name | Description | | ||
|------|-------------| | ||
| cloudtrail_arn | CloudTrail ARN | | ||
<!-- END_TF_DOCS --> |