-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy path.gitignore
67 lines (54 loc) · 1.24 KB
/
.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Gitignore for Epiphany
# Ignore specific items from the git repo
# Do want these
**/!.dockerignore
/!.editorconfig
/!.gitattributes
# Visual Studio Code workspace
epiphany.code-workspace
# Don't want these included
.scannerwork
.vagrant
.terraform
.idea
.vscode
.vs
.atom
.chef
.bundle/*
.kitchen/
.kitchen.local.yml
**/.DS_Store
.DS_Store
# Below are Terraform files that we DO NOT store in repo
# These type of Terraform file are maintain in a secure location
# *.plan
# *.tfstate
# *.tf
# These are generated from 'data.yaml' for any given environment and should NOT be in a repo but a vault along with the data!
# For dev testing it's ok to save
# **/*.plan
# **/*.tfstate
**/*.tfstate.*
# **/*.tf
# **/config.tfvars
# **/az_ad_sp.json
# **/del_rg.sh
# **/del_sp.sh
# **/gen_sp.sh
# **/env.sh
# **/login.sh
**/*.retry
# /data/*.yaml files will be in a private repo
# These files will overlay the files in this repo as part of the build process so that the
# private repo takes precedence over the public repo
# Afterwards, remove all of the build folder except the ansible data from git
core/build/azure/infrastructure
core/build/aws
core/build/metal
core/build/vmware
core/build/vbox
core/build/*
examples/**/bin/
examples/**/obj/
.python.venv/