-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
d5f8b0d
commit 20873b0
Showing
16 changed files
with
565 additions
and
156 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
!.gitattributes | ||
!.github | ||
!.sensitive-files | ||
!.terraform-docs.yml | ||
|
||
# OSX system files | ||
.DS_Store | ||
|
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
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 |
---|---|---|
|
@@ -16,5 +16,6 @@ variable "bucket_cmk" { | |
variable "tags" { | ||
description = "tags" | ||
type = map(string) | ||
default = {} | ||
} | ||
|
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
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 |
---|---|---|
|
@@ -16,4 +16,5 @@ variable "bucket_cmk" { | |
variable "tags" { | ||
description = "tags" | ||
type = map(string) | ||
default = {} | ||
} |
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,69 @@ | ||
formatter: markdown table | ||
sections: | ||
show: | ||
- requirements | ||
- inputs | ||
- outputs | ||
- resources | ||
- data-sources | ||
|
||
# this `content` string is implemented with as a golang template https://pkg.go.dev/text/template | ||
# updates here correspond to `{{ .Content }}` in `output.template` setting below | ||
content: |- | ||
{{ .Requirements }} | ||
<!-- GENERATED WITH `terraform-docs .` | ||
Manually updating the README.md will be overwritten. | ||
For more details, see the file '.terraform-docs.yml' or | ||
https://terraform-docs.io/user-guide/configuration/ | ||
--> | ||
{{ .Inputs }} | ||
<!-- GENERATED WITH `terraform-docs .` | ||
Manually updating the README.md will be overwritten. | ||
For more details, see the file '.terraform-docs.yml' or | ||
https://terraform-docs.io/user-guide/configuration/ | ||
--> | ||
{{ .Modules }} | ||
<!-- GENERATED WITH `terraform-docs .` | ||
Manually updating the README.md will be overwritten. | ||
For more details, see the file '.terraform-docs.yml' or | ||
https://terraform-docs.io/user-guide/configuration/ | ||
--> | ||
{{ .Outputs }} | ||
<!-- GENERATED WITH `terraform-docs .` | ||
Manually updating the README.md will be overwritten. | ||
For more details, see the file '.terraform-docs.yml' or | ||
https://terraform-docs.io/user-guide/configuration/ | ||
--> | ||
{{ .Resources }} | ||
output: | ||
file: README.md | ||
mode: inject | ||
template: |- | ||
<!-- BEGIN_TF_DOCS --> | ||
<!-- GENERATED WITH `terraform-docs .` | ||
Manually updating the README.md will be overwritten. | ||
For more details, see the file '.terraform-docs.yml' or | ||
https://terraform-docs.io/user-guide/configuration/ | ||
--> | ||
{{ .Content }} | ||
<!-- END_TF_DOCS --> | ||
sort: | ||
enabled: true | ||
by: required | ||
|
||
settings: | ||
indent: 2 | ||
espace: false | ||
default: true | ||
required: true | ||
type: true |
Oops, something went wrong.