From d8a023a92cbc638c97d3b3242b8dfe49860a032c Mon Sep 17 00:00:00 2001
From: rptaylor <rptaylor@uvic.ca>
Date: Fri, 5 Apr 2019 01:27:18 -0700
Subject: [PATCH] Tell git to ignore .terraform directory (#4428)

The .terraform directory is populated when modules are downloaded:
https://www.terraform.io/docs/commands/get.html
"The modules are downloaded into a local .terraform folder. This folder should not be committed to version control."
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 5f89c143a..63c590983 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,6 +8,7 @@ temp
 *.bak
 *.tfstate
 *.tfstate.backup
+.terraform/
 contrib/terraform/aws/credentials.tfvars
 /ssh-bastion.conf
 **/*.sw[pon]
-- 
GitLab