From b3ca51a8f2f6f33caf0917729a96b18f201862ea Mon Sep 17 00:00:00 2001 From: mulmuri Date: Wed, 9 Oct 2024 02:27:01 +0900 Subject: [PATCH 1/5] feat: test commit --- atlantis.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 atlantis.yaml diff --git a/atlantis.yaml b/atlantis.yaml new file mode 100644 index 0000000..20d1d2d --- /dev/null +++ b/atlantis.yaml @@ -0,0 +1,6 @@ +version: 3 +projects: + - dir: envs/stg + autoplan: + enabled: true + when_modified: ["*.tf", "*.tfvars", "../../modules/**/*.tf"] \ No newline at end of file From e870890ba156388f4c29ff23092919e847ffd51d Mon Sep 17 00:00:00 2001 From: mulmuri Date: Thu, 10 Oct 2024 04:17:59 +0900 Subject: [PATCH 2/5] feat: helloworld.tf --- main.tf | 0 output.tf | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 main.tf create mode 100644 output.tf diff --git a/main.tf b/main.tf new file mode 100644 index 0000000..e69de29 diff --git a/output.tf b/output.tf new file mode 100644 index 0000000..eaa3531 --- /dev/null +++ b/output.tf @@ -0,0 +1,3 @@ +output hello-world { + value = "Hello, World!" +} \ No newline at end of file From ddbbc59a4f8e12a4462b74bf888d814578becfb6 Mon Sep 17 00:00:00 2001 From: mulmuri Date: Thu, 10 Oct 2024 04:21:14 +0900 Subject: [PATCH 3/5] feat: basic terraform project --- main.tf | 5 +++++ output.tf | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) delete mode 100644 output.tf diff --git a/main.tf b/main.tf index e69de29..955335a 100644 --- a/main.tf +++ b/main.tf @@ -0,0 +1,5 @@ +resource "null_resource" "hello_world" { + provisioner "local-exec" { + command = "echo Hello, Terraform!" + } +} \ No newline at end of file diff --git a/output.tf b/output.tf deleted file mode 100644 index eaa3531..0000000 --- a/output.tf +++ /dev/null @@ -1,3 +0,0 @@ -output hello-world { - value = "Hello, World!" -} \ No newline at end of file From c287acbf7180d72d685d7403acca43e2e0ca6a38 Mon Sep 17 00:00:00 2001 From: mulmuri Date: Thu, 10 Oct 2024 04:24:04 +0900 Subject: [PATCH 4/5] fix: dir --- atlantis.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlantis.yaml b/atlantis.yaml index 20d1d2d..76377f4 100644 --- a/atlantis.yaml +++ b/atlantis.yaml @@ -1,6 +1,6 @@ version: 3 projects: - - dir: envs/stg + - dir: . autoplan: enabled: true when_modified: ["*.tf", "*.tfvars", "../../modules/**/*.tf"] \ No newline at end of file From 6cd6acaa56f2e2947dea2e913b70f0945176466f Mon Sep 17 00:00:00 2001 From: mulmuri Date: Thu, 10 Oct 2024 04:26:37 +0900 Subject: [PATCH 5/5] style: endline --- atlantis.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlantis.yaml b/atlantis.yaml index 76377f4..264fcf9 100644 --- a/atlantis.yaml +++ b/atlantis.yaml @@ -3,4 +3,4 @@ projects: - dir: . autoplan: enabled: true - when_modified: ["*.tf", "*.tfvars", "../../modules/**/*.tf"] \ No newline at end of file + when_modified: ["*.tf", "*.tfvars", "../../modules/**/*.tf"]