From b2d1fcee655df1b1c00dc9b3222c40606dab710f Mon Sep 17 00:00:00 2001 From: Rachit Sheth <133040544+iamrachitsheth@users.noreply.github.com> Date: Thu, 6 Jun 2024 00:14:16 +0100 Subject: [PATCH] Added other files and extension to ignore to strengthen the terraform.gitignore template --- Terraform.gitignore | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 1ef2f1bb..6bc03245 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -39,6 +39,17 @@ terraform.rc # Ignore hcl file .terraform.lock.hcl +# Ignore graph files +*.dot -# Ignore graph file -*.dot \ No newline at end of file +# Ignore lock.hcl +*.terraform.* + +# to skip MacOS file found after creating .bicep +.DS_Store + +# plan files (optional). To save plan before destroy +planout + +# Ignore tfplan files, saved during terraform plan execution +*.out \ No newline at end of file