We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f7c17 commit a72f2ebCopy full SHA for a72f2eb
.circleci/config.yml
@@ -8,11 +8,11 @@ jobs:
8
steps:
9
- checkout
10
- run:
11
- name: Validate tf files (terraform validate)
+ name: "Validate tf files (terraform validate)"
12
command: |
13
find . -type f -name "*.tf" -exec dirname {} \;|sort -u | while read m; do (terraform validate -check-variables=false "$m" && echo "√ $m") || exit 1 ; done
14
15
- name: Check: Terraform formatting (terraform fmt)
+ name: "Check: Terraform formatting (terraform fmt)"
16
17
if [ `terraform fmt --list=true -diff=true -write=false | tee format-issues | wc -c` -ne 0 ]; then
18
echo "Some terraform files need be formatted, run 'terraform fmt' to fix"
0 commit comments