Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

atlantis import #3

Closed
wants to merge 17 commits into from
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions atlantis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
version: 3
projects:
- name: project
branch: /master/
dir: .
26 changes: 26 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -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
}