-
Notifications
You must be signed in to change notification settings - Fork 245
/
.gitignore
50 lines (46 loc) · 921 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
*.backup
*.bak
*.dll
*.exe
*.iml
*.iml
*.log
*.test
*~
.*.swp
./*.tfstate
.DS_Store
.idea
.terraform/
.vagrant/
.vscode
/pkg/
bin/
tmp/*
coverage/
example.tf
modules-dev/
terraform.tfplan
.terraform.lock.hcl
terraform.tfstate
website/.bundle
website/.vagrant
website/build
website/node_modules
dist/*
website/vendor
# Test exclusions
!command/test-fixtures/**/*.tfstate
!command/test-fixtures/**/.terraform/
# Ignore testing directory except for newrelic.tf
testing/*.tf
!testing/newrelic.tf
# Ignore .json, .pem files (which could include files with credentials) in directories with Terraform Executables
testing/*.json
testing/*.pem
examples/modules/cloud-integrations/aws/*.json
examples/modules/cloud-integrations/aws/*.pem
examples/modules/cloud-integrations/azure/*.json
examples/modules/cloud-integrations/azure/*.pem
examples/modules/cloud-integrations/gcp/*.json
examples/modules/cloud-integrations/gcp/*.pem