├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md ├── release-drafter.yml ├── scripts │ └── prepare-release.sh ├── templates │ └── README.tpl └── workflows │ ├── ci.yml │ ├── publish.yml │ ├── release.yml │ ├── test.yml │ └── update-tfdocs.yml ├── CONTRIBUTING.md ├── DCO ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── atlantis.yaml ├── examples ├── README.md ├── example.png ├── tf11_basic │ ├── README.md │ ├── USAGE.md │ └── main.tf ├── tf11_extra_args │ ├── README.md │ ├── USAGE.md │ └── main.tf ├── tf12_atlantis │ ├── README.md │ └── main.tf ├── tf12_basic │ ├── README.md │ └── main.tf ├── tf12_config │ ├── .terraform-docs.yml │ ├── README.md │ └── main.tf ├── tf12_fail_diff │ ├── README.md │ └── main.tf ├── tf12_find │ ├── README.md │ ├── USAGE.md │ ├── main.tf │ └── modules │ │ └── tf12_find_submodules │ │ ├── USAGE.md │ │ └── main.tf └── tf12_inject │ ├── README.md │ └── main.tf ├── scripts └── update-readme.sh └── src └── docker-entrypoint.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/scripts/prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/scripts/prepare-release.sh -------------------------------------------------------------------------------- /.github/templates/README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/templates/README.tpl -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-tfdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/.github/workflows/update-tfdocs.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/DCO -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/action.yml -------------------------------------------------------------------------------- /atlantis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/atlantis.yaml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/example.png -------------------------------------------------------------------------------- /examples/tf11_basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf11_basic/README.md -------------------------------------------------------------------------------- /examples/tf11_basic/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf11_basic/USAGE.md -------------------------------------------------------------------------------- /examples/tf11_basic/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf11_basic/main.tf -------------------------------------------------------------------------------- /examples/tf11_extra_args/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf11_extra_args/README.md -------------------------------------------------------------------------------- /examples/tf11_extra_args/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf11_extra_args/USAGE.md -------------------------------------------------------------------------------- /examples/tf11_extra_args/main.tf: -------------------------------------------------------------------------------- 1 | ../tf11_basic/main.tf -------------------------------------------------------------------------------- /examples/tf12_atlantis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_atlantis/README.md -------------------------------------------------------------------------------- /examples/tf12_atlantis/main.tf: -------------------------------------------------------------------------------- 1 | ../tf12_basic/main.tf -------------------------------------------------------------------------------- /examples/tf12_basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_basic/README.md -------------------------------------------------------------------------------- /examples/tf12_basic/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_basic/main.tf -------------------------------------------------------------------------------- /examples/tf12_config/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_config/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/tf12_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_config/README.md -------------------------------------------------------------------------------- /examples/tf12_config/main.tf: -------------------------------------------------------------------------------- 1 | ../tf12_basic/main.tf -------------------------------------------------------------------------------- /examples/tf12_fail_diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_fail_diff/README.md -------------------------------------------------------------------------------- /examples/tf12_fail_diff/main.tf: -------------------------------------------------------------------------------- 1 | ../tf12_basic/main.tf -------------------------------------------------------------------------------- /examples/tf12_find/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_find/README.md -------------------------------------------------------------------------------- /examples/tf12_find/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_find/USAGE.md -------------------------------------------------------------------------------- /examples/tf12_find/main.tf: -------------------------------------------------------------------------------- 1 | ../tf12_basic/main.tf -------------------------------------------------------------------------------- /examples/tf12_find/modules/tf12_find_submodules/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_find/modules/tf12_find_submodules/USAGE.md -------------------------------------------------------------------------------- /examples/tf12_find/modules/tf12_find_submodules/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_find/modules/tf12_find_submodules/main.tf -------------------------------------------------------------------------------- /examples/tf12_inject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/examples/tf12_inject/README.md -------------------------------------------------------------------------------- /examples/tf12_inject/main.tf: -------------------------------------------------------------------------------- 1 | ../tf12_basic/main.tf -------------------------------------------------------------------------------- /scripts/update-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/scripts/update-readme.sh -------------------------------------------------------------------------------- /src/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terraform-docs/gh-actions/HEAD/src/docker-entrypoint.sh --------------------------------------------------------------------------------