1
0
Fork 0
mirror of https://github.com/cisagov/log4j-affected-db.git synced 2024-11-22 16:40:48 +00:00

Remove lint job step to initialize Terraform directories

Initialization will now be done during the "terraform validate" step.
This commit is contained in:
David Redmin 2021-08-27 13:02:00 -04:00
parent 6a7fbf07bd
commit 895a692ad8
No known key found for this signature in database
GPG key ID: E114D698CCCFB434

View file

@ -84,13 +84,6 @@ jobs:
run: |
go install \
github.com/terraform-docs/terraform-docs@${TERRAFORM_DOCS_VERSION}
- name: Find and initialize Terraform directories
run: |
for path in $(find . -not \( -type d -name ".terraform" -prune \) \
-type f -iname "*.tf" -exec dirname "{}" \; | sort -u); do \
echo "Initializing '$path'..."; \
terraform init -input=false -backend=false "$path"; \
done
- name: Install dependencies
run: |
python -m pip install --upgrade pip