From 59fb24770e90a332a0d6bbebbd1e27f7cf2bd835 Mon Sep 17 00:00:00 2001 From: chibaba Date: Wed, 3 Apr 2024 01:00:16 +0100 Subject: [PATCH] setup gitignore for vcs --- .../vcs/infra/.gitignore | 60 +++++++++++++++++++ .../vcs/infra/providers.tf | 0 2 files changed, 60 insertions(+) create mode 100644 infras/automate_terraform_withgit/vcs/infra/.gitignore create mode 100644 infras/automate_terraform_withgit/vcs/infra/providers.tf diff --git a/infras/automate_terraform_withgit/vcs/infra/.gitignore b/infras/automate_terraform_withgit/vcs/infra/.gitignore new file mode 100644 index 0000000..e0a3c72 --- /dev/null +++ b/infras/automate_terraform_withgit/vcs/infra/.gitignore @@ -0,0 +1,60 @@ +# Local .terraform directories +**/.terraform/* + +# .tfstate files +*.tfstate +*.tfstate.* +*.terraform.* + +# *.pem files ignore all *.pem files to avoid accidental commits +**.pem + +**/*.vagrant +**/*.box +**/*.log + +# Crash log files +crash.log + +# Kubernetes + +**/kubeconfig** + +# Ignore any .tfvars files that are generated automatically for each Terraform run. Most +# .tfvars files are managed as part of configuration and so should be included in +# version control. +# +# example.tfvars + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tf.json +*_override.tf +*_override.tf.json + +# Include override files you do wish to add to version control using negated pattern +# +# !example_override.tf + +# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan +# example: *tfplan* +venv +.env + +*.py[co] +.cache +.coverage +.coverage.* +.DS_Store +*.egg-info +.env +.idea/ +*.ipynb +.ipynb_checkpoints +*.pid +.pytest_cache +*.retry +.vim/ +.vscode +hosts.* \ No newline at end of file diff --git a/infras/automate_terraform_withgit/vcs/infra/providers.tf b/infras/automate_terraform_withgit/vcs/infra/providers.tf new file mode 100644 index 0000000..e69de29