diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c69ba9a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+### https://raw.github.com/github/gitignore/22a5eb3da72c0a224a179033e92722bdbf5a05ad/Terraform.gitignore
+
+#  Local .terraform directories
+**/.terraform/*
+
+# .tfstate files
+*.tfstate
+*.tfstate.*
+
+# .tfvars files
+*.tfvars
+
+
+.terraform.lock.hcl
diff --git a/atlantis.yaml b/atlantis.yaml
new file mode 100644
index 0000000..29a43ee
--- /dev/null
+++ b/atlantis.yaml
@@ -0,0 +1,5 @@
+version: 3
+projects:
+- name: project
+  branch: /master/
+  dir: .
diff --git a/main.tf b/main.tf
new file mode 100644
index 0000000..0d12273
--- /dev/null
+++ b/main.tf
@@ -0,0 +1,26 @@
+resource "null_resource" "ls1" {
+  provisioner "local-exec" {
+    command = "ls -la"
+  }
+}
+
+resource "null_resource" "ls2" {
+  provisioner "local-exec" {
+    command = "ls -l"
+  }
+}
+
+resource "random_id" "dummy" {
+  keepers     = {}
+  byte_length = 1
+}
+
+resource "random_id" "dummy2" {
+  keepers     = {}
+  byte_length = 1
+}
+
+resource "random_id" "dummy3" {
+  keepers     = {}
+  byte_length = 1
+}