|
| 1 | +--- |
| 2 | +name: Docker bug report |
| 3 | +about: Create a bug report |
| 4 | +labels: |
| 5 | +- kind/bug |
| 6 | +- area/local_installation |
| 7 | +--- |
| 8 | + |
| 9 | +<!-- |
| 10 | +Thank you for helping to improve pre-commit-terraform! |
| 11 | +
|
| 12 | +Please be sure to search for open issues before raising a new one. We use issues |
| 13 | +for bug reports and feature requests. Please note, this template is for bugs |
| 14 | +report, not feature requests. |
| 15 | +--> |
| 16 | + |
| 17 | +### Describe the bug |
| 18 | + |
| 19 | +<!-- |
| 20 | +Please let us know what behavior you expected and how terraform-docs diverged |
| 21 | +from that behavior. |
| 22 | +--> |
| 23 | + |
| 24 | + |
| 25 | +### How can we reproduce it? |
| 26 | + |
| 27 | +<!-- |
| 28 | +Help us to reproduce your bug as succinctly and precisely as possible. Any and |
| 29 | +all steps or script that triggers the issue are highly appreciated! |
| 30 | +
|
| 31 | +Do you have long logs to share? Please use collapsible sections, that can be created via: |
| 32 | +
|
| 33 | +<details><summary>SECTION_NAME</summary> |
| 34 | +
|
| 35 | +```bash |
| 36 | +YOUR_LOG_HERE |
| 37 | +``` |
| 38 | +
|
| 39 | +</details> |
| 40 | +--> |
| 41 | + |
| 42 | + |
| 43 | +### Environment information |
| 44 | + |
| 45 | +* OS: |
| 46 | +<!-- I.e.: |
| 47 | +OS: Windows 10 |
| 48 | +OS: Win10 with Ubuntu 20.04 on WSL2 |
| 49 | +OS: MacOS |
| 50 | +OS: Ubuntu 20.04 |
| 51 | +--> |
| 52 | + |
| 53 | +* `uname -a` and/or `systeminfo | Select-String "^OS"` output: |
| 54 | + |
| 55 | +```bash |
| 56 | +INSERT_OUTPUT_HERE |
| 57 | +``` |
| 58 | + |
| 59 | +<!-- I.e.: |
| 60 | +```bash |
| 61 | +PS C:\Users\vm> systeminfo | Select-String "^OS" |
| 62 | +
|
| 63 | +OS Name: Microsoft Windows 10 Pro |
| 64 | +OS Version: 10.0.19043 N/A Build 19043 |
| 65 | +OS Manufacturer: Microsoft Corporation |
| 66 | +OS Configuration: Standalone Workstation |
| 67 | +OS Build Type: Multiprocessor Free |
| 68 | +
|
| 69 | +$ uname -a |
| 70 | +Linux DESKTOP-C7315EF 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux |
| 71 | +``` |
| 72 | +--> |
| 73 | + |
| 74 | +* Tools availability and versions: |
| 75 | + |
| 76 | +<!-- For check all needed version run next script: |
| 77 | +
|
| 78 | +$0 << EOF |
| 79 | +pre-commit --version 2>/dev/null || echo "pre-commit SKIPPED" |
| 80 | +terraform --version | head -n 1 2>/dev/null || echo "terraform SKIPPED" |
| 81 | +python --version 2>/dev/null || echo "python SKIPPED" |
| 82 | +python3 --version 2>/dev/null || echo "python3 SKIPPED" |
| 83 | +echo -n "checkov " && checkov --version 2>/dev/null || echo "checkov SKIPPED" |
| 84 | +terraform-docs --version 2>/dev/null || echo "terraform-docs SKIPPED" |
| 85 | +terragrunt --version 2>/dev/null || echo "terragrunt SKIPPED" |
| 86 | +echo -n "terrascan " && terrascan version 2>/dev/null || echo "terrascan SKIPPED" |
| 87 | +tflint --version 2>/dev/null || echo "tflint SKIPPED" |
| 88 | +echo -n "tfsec " && tfsec --version 2>/dev/null || echo "tfsec SKIPPED" |
| 89 | +EOF |
| 90 | +
|
| 91 | +--> |
| 92 | + |
| 93 | +```bash |
| 94 | +INSERT_TOOLS_VERSIONS_HERE |
| 95 | +``` |
| 96 | + |
| 97 | + |
| 98 | +* `.pre-commit-config.yaml`: |
| 99 | + |
| 100 | +<details><summary>file content</summary> |
| 101 | + |
| 102 | +```bash |
| 103 | +INSERT_FILE_CONTENT_HERE |
| 104 | +``` |
| 105 | + |
| 106 | +</details> |
0 commit comments