Skip to content

Commit a72f2eb

Browse files
committed
Fix formatting
1 parent d4f7c17 commit a72f2eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
steps:
99
- checkout
1010
- run:
11-
name: Validate tf files (terraform validate)
11+
name: "Validate tf files (terraform validate)"
1212
command: |
1313
find . -type f -name "*.tf" -exec dirname {} \;|sort -u | while read m; do (terraform validate -check-variables=false "$m" && echo "√ $m") || exit 1 ; done
1414
- run:
15-
name: Check: Terraform formatting (terraform fmt)
15+
name: "Check: Terraform formatting (terraform fmt)"
1616
command: |
1717
if [ `terraform fmt --list=true -diff=true -write=false | tee format-issues | wc -c` -ne 0 ]; then
1818
echo "Some terraform files need be formatted, run 'terraform fmt' to fix"

0 commit comments

Comments
 (0)