Skip to content

Commit 05f04a5

Browse files
authored
Merge pull request #94 from tclohm/users
Users
2 parents 071fdf3 + 65259de commit 05f04a5

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,38 @@ db/*
2323
remote/setup/*
2424

2525
Makefilebin/
26+
27+
# Local .terraform directories
28+
**/.terraform/*
29+
30+
# .tfstate files
31+
*.tfstate
32+
*.tfstate.*
33+
34+
# Crash log files
35+
crash.log
36+
crash.*.log
37+
38+
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
39+
# password, private keys, and other secrets. These should not be part of version
40+
# control as they are data points which are potentially sensitive and subject
41+
# to change depending on the environment.
42+
*.tfvars
43+
*.tfvars.json
44+
45+
# Ignore override files as they are usually used to override resources locally and so
46+
# are not checked in
47+
override.tf
48+
override.tf.json
49+
*_override.tf
50+
*_override.tf.json
51+
52+
# Include override files you do wish to add to version control using negated pattern
53+
# !example_override.tf
54+
55+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
56+
# example: *tfplan*
57+
58+
# Ignore CLI configuration files
59+
.terraformrc
60+
terraform.rc

.terraform.lock.hcl

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pizza.tf

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = "3.25.0"
6+
}
7+
}
8+
}
9+
10+
provider "aws" {
11+
region = "us-west-2"
12+
13+
}

0 commit comments

Comments
 (0)