Skip to content

Commit 9793bdf

Browse files
author
Matt Reeves
committedJul 13, 2024
Initial commit
0 parents  commit 9793bdf

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
 

‎.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# ---> Terraform
2+
# Local .terraform directories
3+
**/.terraform/*
4+
5+
# .tfstate files
6+
*.tfstate
7+
*.tfstate.*
8+
9+
# Crash log files
10+
crash.log
11+
crash.*.log
12+
13+
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
14+
# password, private keys, and other secrets. These should not be part of version
15+
# control as they are data points which are potentially sensitive and subject
16+
# to change depending on the environment.
17+
*.tfvars
18+
*.tfvars.json
19+
20+
# Ignore override files as they are usually used to override resources locally and so
21+
# are not checked in
22+
override.tf
23+
override.tf.json
24+
*_override.tf
25+
*_override.tf.json
26+
27+
# Include override files you do wish to add to version control using negated pattern
28+
# !example_override.tf
29+
30+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
31+
# example: *tfplan*
32+
33+
# Ignore CLI configuration files
34+
.terraformrc
35+
terraform.rc
36+

‎README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# iac
2+

0 commit comments

Comments
 (0)
Please sign in to comment.