From 87ad180459b888b3a6f6c88c0d35e4f0502233dc Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:10:42 +0100 Subject: [PATCH 01/11] pr-checks --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 85ff3b5..d898d47 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -35,4 +35,4 @@ jobs: tg_command: 'run-all plan' tg_comment: '1' env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From b87b1324bcc539fe91254888fe9294c5f02209c7 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:12:17 +0100 Subject: [PATCH 02/11] add plan --- .github/workflows/pr-checks.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index d898d47..37a2175 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -15,17 +15,6 @@ jobs: - name: 'Checkout' uses: actions/checkout@master - - name: Run checks - uses: gruntwork-io/terragrunt-action@v2 - with: - tf_version: ${{ env.tf_version }} - tg_version: ${{ env.tg_version }} - tg_dir: ${{ env.working_dir }} - tg_command: 'hclfmt --terragrunt-check --terragrunt-diff' - tg_comment: '0' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Run plan uses: gruntwork-io/terragrunt-action@v2 with: From fd2ce3d14a35c7b0e890285259816a08ba3a85ee Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:22:51 +0100 Subject: [PATCH 03/11] Add usage of bug/jq-args-71 --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 37a2175..27dfc11 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@master - name: Run plan - uses: gruntwork-io/terragrunt-action@v2 + uses: gruntwork-io/terragrunt-action@bug/jq-args-71 with: tf_version: ${{ env.tf_version }} tg_version: ${{ env.tg_version }} From 6200eab9aff8aa5a4401af5485118c4fd30e5687 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:48:19 +0100 Subject: [PATCH 04/11] run all pr checks --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 27dfc11..3759d85 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -5,7 +5,7 @@ on: [pull_request] env: tf_version: '1.5.7' tg_version: '0.53.2' - working_dir: 'run-all' + working_dir: '.' TRACE: '1' jobs: From 43711f79c99d8afa6580868a00a1c5789aa3ae05 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:50:42 +0100 Subject: [PATCH 05/11] Execution of tf-lint-regeneration --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 3759d85..2ed65e5 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -5,7 +5,7 @@ on: [pull_request] env: tf_version: '1.5.7' tg_version: '0.53.2' - working_dir: '.' + working_dir: 'tf-lint-regeneration' TRACE: '1' jobs: From 8d6f47e636a8fe69ce81a615aca52beba1159555 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:52:46 +0100 Subject: [PATCH 06/11] tf-lint-regeneration/dev/apps --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 2ed65e5..4d1bad2 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -5,7 +5,7 @@ on: [pull_request] env: tf_version: '1.5.7' tg_version: '0.53.2' - working_dir: 'tf-lint-regeneration' + working_dir: 'tf-lint-regeneration/dev/apps' TRACE: '1' jobs: From 23be05149071b8c0931a514752918de3087f6087 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:55:04 +0100 Subject: [PATCH 07/11] Add passing of auth socket --- .github/workflows/pr-checks.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 4d1bad2..6d99529 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -15,6 +15,11 @@ jobs: - name: 'Checkout' uses: actions/checkout@master + - uses: webfactory/ssh-agent@v0.7.0 + with: + ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} + ssh-auth-sock: "/home/runner/work/_temp/_github_workflow/ssh-agent.sock" + - name: Run plan uses: gruntwork-io/terragrunt-action@bug/jq-args-71 with: @@ -25,3 +30,4 @@ jobs: tg_comment: '1' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SSH_AUTH_SOCK: "/github/workflow/ssh-agent.sock" From c7ef32d43572166835b8e2073eb1b5bb1898a916 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 21:59:33 +0100 Subject: [PATCH 08/11] Added more test modules --- .github/workflows/pr-checks.yml | 2 +- run-all/app10/main.tf | 4 ++++ run-all/app10/terragrunt.hcl | 0 run-all/app11/main.tf | 4 ++++ run-all/app11/terragrunt.hcl | 0 run-all/app4/main.tf | 4 ++++ run-all/app4/terragrunt.hcl | 0 run-all/app5/main.tf | 4 ++++ run-all/app5/terragrunt.hcl | 0 run-all/app6/main.tf | 4 ++++ run-all/app6/terragrunt.hcl | 0 run-all/app7/main.tf | 4 ++++ run-all/app7/terragrunt.hcl | 0 run-all/app8/main.tf | 4 ++++ run-all/app8/terragrunt.hcl | 0 run-all/app9/main.tf | 4 ++++ run-all/app9/terragrunt.hcl | 0 run-all/project-2/project-2-app2/main.tf | 4 ++++ run-all/project-2/project-2-app2/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app3/main.tf | 4 ++++ run-all/project-2/project-2-app3/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app4/main.tf | 4 ++++ run-all/project-2/project-2-app4/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app5/main.tf | 4 ++++ run-all/project-2/project-2-app5/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app6/main.tf | 4 ++++ run-all/project-2/project-2-app6/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app7/main.tf | 4 ++++ run-all/project-2/project-2-app7/terragrunt.hcl | 12 ++++++++++++ 29 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 run-all/app10/main.tf create mode 100644 run-all/app10/terragrunt.hcl create mode 100644 run-all/app11/main.tf create mode 100644 run-all/app11/terragrunt.hcl create mode 100644 run-all/app4/main.tf create mode 100644 run-all/app4/terragrunt.hcl create mode 100644 run-all/app5/main.tf create mode 100644 run-all/app5/terragrunt.hcl create mode 100644 run-all/app6/main.tf create mode 100644 run-all/app6/terragrunt.hcl create mode 100644 run-all/app7/main.tf create mode 100644 run-all/app7/terragrunt.hcl create mode 100644 run-all/app8/main.tf create mode 100644 run-all/app8/terragrunt.hcl create mode 100644 run-all/app9/main.tf create mode 100644 run-all/app9/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app2/main.tf create mode 100644 run-all/project-2/project-2-app2/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app3/main.tf create mode 100644 run-all/project-2/project-2-app3/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app4/main.tf create mode 100644 run-all/project-2/project-2-app4/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app5/main.tf create mode 100644 run-all/project-2/project-2-app5/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app6/main.tf create mode 100644 run-all/project-2/project-2-app6/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app7/main.tf create mode 100644 run-all/project-2/project-2-app7/terragrunt.hcl diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 6d99529..13d993d 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -5,7 +5,7 @@ on: [pull_request] env: tf_version: '1.5.7' tg_version: '0.53.2' - working_dir: 'tf-lint-regeneration/dev/apps' + working_dir: 'run-all' TRACE: '1' jobs: diff --git a/run-all/app10/main.tf b/run-all/app10/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app10/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app10/terragrunt.hcl b/run-all/app10/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app11/main.tf b/run-all/app11/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app11/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app11/terragrunt.hcl b/run-all/app11/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app4/main.tf b/run-all/app4/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app4/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app4/terragrunt.hcl b/run-all/app4/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app5/main.tf b/run-all/app5/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app5/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app5/terragrunt.hcl b/run-all/app5/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app6/main.tf b/run-all/app6/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app6/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app6/terragrunt.hcl b/run-all/app6/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app7/main.tf b/run-all/app7/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app7/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app7/terragrunt.hcl b/run-all/app7/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app8/main.tf b/run-all/app8/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app8/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app8/terragrunt.hcl b/run-all/app8/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/app9/main.tf b/run-all/app9/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/app9/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/app9/terragrunt.hcl b/run-all/app9/terragrunt.hcl new file mode 100644 index 0000000..e69de29 diff --git a/run-all/project-2/project-2-app2/main.tf b/run-all/project-2/project-2-app2/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app2/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app2/terragrunt.hcl b/run-all/project-2/project-2-app2/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app2/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app3/main.tf b/run-all/project-2/project-2-app3/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app3/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app3/terragrunt.hcl b/run-all/project-2/project-2-app3/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app3/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app4/main.tf b/run-all/project-2/project-2-app4/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app4/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app4/terragrunt.hcl b/run-all/project-2/project-2-app4/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app4/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app5/main.tf b/run-all/project-2/project-2-app5/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app5/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app5/terragrunt.hcl b/run-all/project-2/project-2-app5/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app5/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app6/main.tf b/run-all/project-2/project-2-app6/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app6/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app6/terragrunt.hcl b/run-all/project-2/project-2-app6/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app6/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app7/main.tf b/run-all/project-2/project-2-app7/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app7/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app7/terragrunt.hcl b/run-all/project-2/project-2-app7/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app7/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} From b4da9b5bdae85f7ff131e83359affaa9d3547a8b Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 22:00:34 +0100 Subject: [PATCH 09/11] Disabled trace --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 13d993d..c74fe49 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -6,7 +6,7 @@ env: tf_version: '1.5.7' tg_version: '0.53.2' working_dir: 'run-all' - TRACE: '1' + #TRACE: '1' jobs: checks: From 21c1ec6a82a56c25ea9d4bd2386cce979fdb3a45 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 22:05:11 +0100 Subject: [PATCH 10/11] add multiple test folders --- run-all/project-2/copy.sh | 14 ++++++++++++++ run-all/project-2/project-2-app1-001/main.tf | 4 ++++ .../project-2/project-2-app1-001/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-002/main.tf | 4 ++++ .../project-2/project-2-app1-002/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-003/main.tf | 4 ++++ .../project-2/project-2-app1-003/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-004/main.tf | 4 ++++ .../project-2/project-2-app1-004/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-005/main.tf | 4 ++++ .../project-2/project-2-app1-005/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-006/main.tf | 4 ++++ .../project-2/project-2-app1-006/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-007/main.tf | 4 ++++ .../project-2/project-2-app1-007/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-008/main.tf | 4 ++++ .../project-2/project-2-app1-008/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-009/main.tf | 4 ++++ .../project-2/project-2-app1-009/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-010/main.tf | 4 ++++ .../project-2/project-2-app1-010/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-011/main.tf | 4 ++++ .../project-2/project-2-app1-011/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-012/main.tf | 4 ++++ .../project-2/project-2-app1-012/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-013/main.tf | 4 ++++ .../project-2/project-2-app1-013/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-014/main.tf | 4 ++++ .../project-2/project-2-app1-014/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-015/main.tf | 4 ++++ .../project-2/project-2-app1-015/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-016/main.tf | 4 ++++ .../project-2/project-2-app1-016/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-017/main.tf | 4 ++++ .../project-2/project-2-app1-017/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-018/main.tf | 4 ++++ .../project-2/project-2-app1-018/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-019/main.tf | 4 ++++ .../project-2/project-2-app1-019/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-020/main.tf | 4 ++++ .../project-2/project-2-app1-020/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-021/main.tf | 4 ++++ .../project-2/project-2-app1-021/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-022/main.tf | 4 ++++ .../project-2/project-2-app1-022/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-023/main.tf | 4 ++++ .../project-2/project-2-app1-023/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-024/main.tf | 4 ++++ .../project-2/project-2-app1-024/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-025/main.tf | 4 ++++ .../project-2/project-2-app1-025/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-026/main.tf | 4 ++++ .../project-2/project-2-app1-026/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-027/main.tf | 4 ++++ .../project-2/project-2-app1-027/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-028/main.tf | 4 ++++ .../project-2/project-2-app1-028/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-029/main.tf | 4 ++++ .../project-2/project-2-app1-029/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-030/main.tf | 4 ++++ .../project-2/project-2-app1-030/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-031/main.tf | 4 ++++ .../project-2/project-2-app1-031/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-032/main.tf | 4 ++++ .../project-2/project-2-app1-032/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-033/main.tf | 4 ++++ .../project-2/project-2-app1-033/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-034/main.tf | 4 ++++ .../project-2/project-2-app1-034/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-035/main.tf | 4 ++++ .../project-2/project-2-app1-035/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-036/main.tf | 4 ++++ .../project-2/project-2-app1-036/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-037/main.tf | 4 ++++ .../project-2/project-2-app1-037/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-038/main.tf | 4 ++++ .../project-2/project-2-app1-038/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-039/main.tf | 4 ++++ .../project-2/project-2-app1-039/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-040/main.tf | 4 ++++ .../project-2/project-2-app1-040/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-041/main.tf | 4 ++++ .../project-2/project-2-app1-041/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-042/main.tf | 4 ++++ .../project-2/project-2-app1-042/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-043/main.tf | 4 ++++ .../project-2/project-2-app1-043/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-044/main.tf | 4 ++++ .../project-2/project-2-app1-044/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-045/main.tf | 4 ++++ .../project-2/project-2-app1-045/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-046/main.tf | 4 ++++ .../project-2/project-2-app1-046/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-047/main.tf | 4 ++++ .../project-2/project-2-app1-047/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-048/main.tf | 4 ++++ .../project-2/project-2-app1-048/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-049/main.tf | 4 ++++ .../project-2/project-2-app1-049/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-050/main.tf | 4 ++++ .../project-2/project-2-app1-050/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-051/main.tf | 4 ++++ .../project-2/project-2-app1-051/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-052/main.tf | 4 ++++ .../project-2/project-2-app1-052/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-053/main.tf | 4 ++++ .../project-2/project-2-app1-053/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-054/main.tf | 4 ++++ .../project-2/project-2-app1-054/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-055/main.tf | 4 ++++ .../project-2/project-2-app1-055/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-056/main.tf | 4 ++++ .../project-2/project-2-app1-056/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-057/main.tf | 4 ++++ .../project-2/project-2-app1-057/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-058/main.tf | 4 ++++ .../project-2/project-2-app1-058/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-059/main.tf | 4 ++++ .../project-2/project-2-app1-059/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-060/main.tf | 4 ++++ .../project-2/project-2-app1-060/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-061/main.tf | 4 ++++ .../project-2/project-2-app1-061/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-062/main.tf | 4 ++++ .../project-2/project-2-app1-062/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-063/main.tf | 4 ++++ .../project-2/project-2-app1-063/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-064/main.tf | 4 ++++ .../project-2/project-2-app1-064/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-065/main.tf | 4 ++++ .../project-2/project-2-app1-065/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-066/main.tf | 4 ++++ .../project-2/project-2-app1-066/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-067/main.tf | 4 ++++ .../project-2/project-2-app1-067/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-068/main.tf | 4 ++++ .../project-2/project-2-app1-068/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-069/main.tf | 4 ++++ .../project-2/project-2-app1-069/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-070/main.tf | 4 ++++ .../project-2/project-2-app1-070/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-071/main.tf | 4 ++++ .../project-2/project-2-app1-071/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-072/main.tf | 4 ++++ .../project-2/project-2-app1-072/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-073/main.tf | 4 ++++ .../project-2/project-2-app1-073/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-074/main.tf | 4 ++++ .../project-2/project-2-app1-074/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-075/main.tf | 4 ++++ .../project-2/project-2-app1-075/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-076/main.tf | 4 ++++ .../project-2/project-2-app1-076/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-077/main.tf | 4 ++++ .../project-2/project-2-app1-077/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-078/main.tf | 4 ++++ .../project-2/project-2-app1-078/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-079/main.tf | 4 ++++ .../project-2/project-2-app1-079/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-080/main.tf | 4 ++++ .../project-2/project-2-app1-080/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-081/main.tf | 4 ++++ .../project-2/project-2-app1-081/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-082/main.tf | 4 ++++ .../project-2/project-2-app1-082/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-083/main.tf | 4 ++++ .../project-2/project-2-app1-083/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-084/main.tf | 4 ++++ .../project-2/project-2-app1-084/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-085/main.tf | 4 ++++ .../project-2/project-2-app1-085/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-086/main.tf | 4 ++++ .../project-2/project-2-app1-086/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-087/main.tf | 4 ++++ .../project-2/project-2-app1-087/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-088/main.tf | 4 ++++ .../project-2/project-2-app1-088/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-089/main.tf | 4 ++++ .../project-2/project-2-app1-089/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-090/main.tf | 4 ++++ .../project-2/project-2-app1-090/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-091/main.tf | 4 ++++ .../project-2/project-2-app1-091/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-092/main.tf | 4 ++++ .../project-2/project-2-app1-092/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-093/main.tf | 4 ++++ .../project-2/project-2-app1-093/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-094/main.tf | 4 ++++ .../project-2/project-2-app1-094/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-095/main.tf | 4 ++++ .../project-2/project-2-app1-095/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-096/main.tf | 4 ++++ .../project-2/project-2-app1-096/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-097/main.tf | 4 ++++ .../project-2/project-2-app1-097/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-098/main.tf | 4 ++++ .../project-2/project-2-app1-098/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-099/main.tf | 4 ++++ .../project-2/project-2-app1-099/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-100/main.tf | 4 ++++ .../project-2/project-2-app1-100/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-101/main.tf | 4 ++++ .../project-2/project-2-app1-101/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-102/main.tf | 4 ++++ .../project-2/project-2-app1-102/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-103/main.tf | 4 ++++ .../project-2/project-2-app1-103/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-104/main.tf | 4 ++++ .../project-2/project-2-app1-104/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-105/main.tf | 4 ++++ .../project-2/project-2-app1-105/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-106/main.tf | 4 ++++ .../project-2/project-2-app1-106/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-107/main.tf | 4 ++++ .../project-2/project-2-app1-107/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-108/main.tf | 4 ++++ .../project-2/project-2-app1-108/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-109/main.tf | 4 ++++ .../project-2/project-2-app1-109/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-110/main.tf | 4 ++++ .../project-2/project-2-app1-110/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-111/main.tf | 4 ++++ .../project-2/project-2-app1-111/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-112/main.tf | 4 ++++ .../project-2/project-2-app1-112/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-113/main.tf | 4 ++++ .../project-2/project-2-app1-113/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-114/main.tf | 4 ++++ .../project-2/project-2-app1-114/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-115/main.tf | 4 ++++ .../project-2/project-2-app1-115/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-116/main.tf | 4 ++++ .../project-2/project-2-app1-116/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-117/main.tf | 4 ++++ .../project-2/project-2-app1-117/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-118/main.tf | 4 ++++ .../project-2/project-2-app1-118/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-119/main.tf | 4 ++++ .../project-2/project-2-app1-119/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-120/main.tf | 4 ++++ .../project-2/project-2-app1-120/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-121/main.tf | 4 ++++ .../project-2/project-2-app1-121/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-122/main.tf | 4 ++++ .../project-2/project-2-app1-122/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-123/main.tf | 4 ++++ .../project-2/project-2-app1-123/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-124/main.tf | 4 ++++ .../project-2/project-2-app1-124/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-125/main.tf | 4 ++++ .../project-2/project-2-app1-125/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-126/main.tf | 4 ++++ .../project-2/project-2-app1-126/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-127/main.tf | 4 ++++ .../project-2/project-2-app1-127/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-128/main.tf | 4 ++++ .../project-2/project-2-app1-128/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-129/main.tf | 4 ++++ .../project-2/project-2-app1-129/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-130/main.tf | 4 ++++ .../project-2/project-2-app1-130/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-131/main.tf | 4 ++++ .../project-2/project-2-app1-131/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-132/main.tf | 4 ++++ .../project-2/project-2-app1-132/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-133/main.tf | 4 ++++ .../project-2/project-2-app1-133/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-134/main.tf | 4 ++++ .../project-2/project-2-app1-134/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-135/main.tf | 4 ++++ .../project-2/project-2-app1-135/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-136/main.tf | 4 ++++ .../project-2/project-2-app1-136/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-137/main.tf | 4 ++++ .../project-2/project-2-app1-137/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-138/main.tf | 4 ++++ .../project-2/project-2-app1-138/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-139/main.tf | 4 ++++ .../project-2/project-2-app1-139/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-140/main.tf | 4 ++++ .../project-2/project-2-app1-140/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-141/main.tf | 4 ++++ .../project-2/project-2-app1-141/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-142/main.tf | 4 ++++ .../project-2/project-2-app1-142/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-143/main.tf | 4 ++++ .../project-2/project-2-app1-143/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-144/main.tf | 4 ++++ .../project-2/project-2-app1-144/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-145/main.tf | 4 ++++ .../project-2/project-2-app1-145/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-146/main.tf | 4 ++++ .../project-2/project-2-app1-146/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-147/main.tf | 4 ++++ .../project-2/project-2-app1-147/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-148/main.tf | 4 ++++ .../project-2/project-2-app1-148/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-149/main.tf | 4 ++++ .../project-2/project-2-app1-149/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-150/main.tf | 4 ++++ .../project-2/project-2-app1-150/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-151/main.tf | 4 ++++ .../project-2/project-2-app1-151/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-152/main.tf | 4 ++++ .../project-2/project-2-app1-152/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-153/main.tf | 4 ++++ .../project-2/project-2-app1-153/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-154/main.tf | 4 ++++ .../project-2/project-2-app1-154/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-155/main.tf | 4 ++++ .../project-2/project-2-app1-155/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-156/main.tf | 4 ++++ .../project-2/project-2-app1-156/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-157/main.tf | 4 ++++ .../project-2/project-2-app1-157/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-158/main.tf | 4 ++++ .../project-2/project-2-app1-158/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-159/main.tf | 4 ++++ .../project-2/project-2-app1-159/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-160/main.tf | 4 ++++ .../project-2/project-2-app1-160/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-161/main.tf | 4 ++++ .../project-2/project-2-app1-161/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-162/main.tf | 4 ++++ .../project-2/project-2-app1-162/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-163/main.tf | 4 ++++ .../project-2/project-2-app1-163/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-164/main.tf | 4 ++++ .../project-2/project-2-app1-164/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-165/main.tf | 4 ++++ .../project-2/project-2-app1-165/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-166/main.tf | 4 ++++ .../project-2/project-2-app1-166/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-167/main.tf | 4 ++++ .../project-2/project-2-app1-167/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-168/main.tf | 4 ++++ .../project-2/project-2-app1-168/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-169/main.tf | 4 ++++ .../project-2/project-2-app1-169/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-170/main.tf | 4 ++++ .../project-2/project-2-app1-170/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-171/main.tf | 4 ++++ .../project-2/project-2-app1-171/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-172/main.tf | 4 ++++ .../project-2/project-2-app1-172/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-173/main.tf | 4 ++++ .../project-2/project-2-app1-173/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-174/main.tf | 4 ++++ .../project-2/project-2-app1-174/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-175/main.tf | 4 ++++ .../project-2/project-2-app1-175/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-176/main.tf | 4 ++++ .../project-2/project-2-app1-176/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-177/main.tf | 4 ++++ .../project-2/project-2-app1-177/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-178/main.tf | 4 ++++ .../project-2/project-2-app1-178/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-179/main.tf | 4 ++++ .../project-2/project-2-app1-179/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-180/main.tf | 4 ++++ .../project-2/project-2-app1-180/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-181/main.tf | 4 ++++ .../project-2/project-2-app1-181/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-182/main.tf | 4 ++++ .../project-2/project-2-app1-182/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-183/main.tf | 4 ++++ .../project-2/project-2-app1-183/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-184/main.tf | 4 ++++ .../project-2/project-2-app1-184/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-185/main.tf | 4 ++++ .../project-2/project-2-app1-185/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-186/main.tf | 4 ++++ .../project-2/project-2-app1-186/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-187/main.tf | 4 ++++ .../project-2/project-2-app1-187/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-188/main.tf | 4 ++++ .../project-2/project-2-app1-188/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-189/main.tf | 4 ++++ .../project-2/project-2-app1-189/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-190/main.tf | 4 ++++ .../project-2/project-2-app1-190/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-191/main.tf | 4 ++++ .../project-2/project-2-app1-191/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-192/main.tf | 4 ++++ .../project-2/project-2-app1-192/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-193/main.tf | 4 ++++ .../project-2/project-2-app1-193/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-194/main.tf | 4 ++++ .../project-2/project-2-app1-194/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-195/main.tf | 4 ++++ .../project-2/project-2-app1-195/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-196/main.tf | 4 ++++ .../project-2/project-2-app1-196/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-197/main.tf | 4 ++++ .../project-2/project-2-app1-197/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-198/main.tf | 4 ++++ .../project-2/project-2-app1-198/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-199/main.tf | 4 ++++ .../project-2/project-2-app1-199/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-200/main.tf | 4 ++++ .../project-2/project-2-app1-200/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-201/main.tf | 4 ++++ .../project-2/project-2-app1-201/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-202/main.tf | 4 ++++ .../project-2/project-2-app1-202/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-203/main.tf | 4 ++++ .../project-2/project-2-app1-203/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-204/main.tf | 4 ++++ .../project-2/project-2-app1-204/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-205/main.tf | 4 ++++ .../project-2/project-2-app1-205/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-206/main.tf | 4 ++++ .../project-2/project-2-app1-206/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-207/main.tf | 4 ++++ .../project-2/project-2-app1-207/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-208/main.tf | 4 ++++ .../project-2/project-2-app1-208/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-209/main.tf | 4 ++++ .../project-2/project-2-app1-209/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-210/main.tf | 4 ++++ .../project-2/project-2-app1-210/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-211/main.tf | 4 ++++ .../project-2/project-2-app1-211/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-212/main.tf | 4 ++++ .../project-2/project-2-app1-212/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-213/main.tf | 4 ++++ .../project-2/project-2-app1-213/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-214/main.tf | 4 ++++ .../project-2/project-2-app1-214/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-215/main.tf | 4 ++++ .../project-2/project-2-app1-215/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-216/main.tf | 4 ++++ .../project-2/project-2-app1-216/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-217/main.tf | 4 ++++ .../project-2/project-2-app1-217/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-218/main.tf | 4 ++++ .../project-2/project-2-app1-218/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-219/main.tf | 4 ++++ .../project-2/project-2-app1-219/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-220/main.tf | 4 ++++ .../project-2/project-2-app1-220/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-221/main.tf | 4 ++++ .../project-2/project-2-app1-221/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-222/main.tf | 4 ++++ .../project-2/project-2-app1-222/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-223/main.tf | 4 ++++ .../project-2/project-2-app1-223/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-224/main.tf | 4 ++++ .../project-2/project-2-app1-224/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-225/main.tf | 4 ++++ .../project-2/project-2-app1-225/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-226/main.tf | 4 ++++ .../project-2/project-2-app1-226/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-227/main.tf | 4 ++++ .../project-2/project-2-app1-227/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-228/main.tf | 4 ++++ .../project-2/project-2-app1-228/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-229/main.tf | 4 ++++ .../project-2/project-2-app1-229/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-230/main.tf | 4 ++++ .../project-2/project-2-app1-230/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-231/main.tf | 4 ++++ .../project-2/project-2-app1-231/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-232/main.tf | 4 ++++ .../project-2/project-2-app1-232/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-233/main.tf | 4 ++++ .../project-2/project-2-app1-233/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-234/main.tf | 4 ++++ .../project-2/project-2-app1-234/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-235/main.tf | 4 ++++ .../project-2/project-2-app1-235/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-236/main.tf | 4 ++++ .../project-2/project-2-app1-236/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-237/main.tf | 4 ++++ .../project-2/project-2-app1-237/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-238/main.tf | 4 ++++ .../project-2/project-2-app1-238/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-239/main.tf | 4 ++++ .../project-2/project-2-app1-239/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-240/main.tf | 4 ++++ .../project-2/project-2-app1-240/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-241/main.tf | 4 ++++ .../project-2/project-2-app1-241/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-242/main.tf | 4 ++++ .../project-2/project-2-app1-242/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-243/main.tf | 4 ++++ .../project-2/project-2-app1-243/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-244/main.tf | 4 ++++ .../project-2/project-2-app1-244/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-245/main.tf | 4 ++++ .../project-2/project-2-app1-245/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-246/main.tf | 4 ++++ .../project-2/project-2-app1-246/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-247/main.tf | 4 ++++ .../project-2/project-2-app1-247/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-248/main.tf | 4 ++++ .../project-2/project-2-app1-248/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-249/main.tf | 4 ++++ .../project-2/project-2-app1-249/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-250/main.tf | 4 ++++ .../project-2/project-2-app1-250/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-251/main.tf | 4 ++++ .../project-2/project-2-app1-251/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-252/main.tf | 4 ++++ .../project-2/project-2-app1-252/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-253/main.tf | 4 ++++ .../project-2/project-2-app1-253/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-254/main.tf | 4 ++++ .../project-2/project-2-app1-254/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-255/main.tf | 4 ++++ .../project-2/project-2-app1-255/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-256/main.tf | 4 ++++ .../project-2/project-2-app1-256/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-257/main.tf | 4 ++++ .../project-2/project-2-app1-257/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-258/main.tf | 4 ++++ .../project-2/project-2-app1-258/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-259/main.tf | 4 ++++ .../project-2/project-2-app1-259/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-260/main.tf | 4 ++++ .../project-2/project-2-app1-260/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-261/main.tf | 4 ++++ .../project-2/project-2-app1-261/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-262/main.tf | 4 ++++ .../project-2/project-2-app1-262/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-263/main.tf | 4 ++++ .../project-2/project-2-app1-263/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-264/main.tf | 4 ++++ .../project-2/project-2-app1-264/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-265/main.tf | 4 ++++ .../project-2/project-2-app1-265/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-266/main.tf | 4 ++++ .../project-2/project-2-app1-266/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-267/main.tf | 4 ++++ .../project-2/project-2-app1-267/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-268/main.tf | 4 ++++ .../project-2/project-2-app1-268/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-269/main.tf | 4 ++++ .../project-2/project-2-app1-269/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-270/main.tf | 4 ++++ .../project-2/project-2-app1-270/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-271/main.tf | 4 ++++ .../project-2/project-2-app1-271/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-272/main.tf | 4 ++++ .../project-2/project-2-app1-272/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-273/main.tf | 4 ++++ .../project-2/project-2-app1-273/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-274/main.tf | 4 ++++ .../project-2/project-2-app1-274/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-275/main.tf | 4 ++++ .../project-2/project-2-app1-275/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-276/main.tf | 4 ++++ .../project-2/project-2-app1-276/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-277/main.tf | 4 ++++ .../project-2/project-2-app1-277/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-278/main.tf | 4 ++++ .../project-2/project-2-app1-278/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-279/main.tf | 4 ++++ .../project-2/project-2-app1-279/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-280/main.tf | 4 ++++ .../project-2/project-2-app1-280/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-281/main.tf | 4 ++++ .../project-2/project-2-app1-281/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-282/main.tf | 4 ++++ .../project-2/project-2-app1-282/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-283/main.tf | 4 ++++ .../project-2/project-2-app1-283/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-284/main.tf | 4 ++++ .../project-2/project-2-app1-284/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-285/main.tf | 4 ++++ .../project-2/project-2-app1-285/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-286/main.tf | 4 ++++ .../project-2/project-2-app1-286/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-287/main.tf | 4 ++++ .../project-2/project-2-app1-287/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-288/main.tf | 4 ++++ .../project-2/project-2-app1-288/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-289/main.tf | 4 ++++ .../project-2/project-2-app1-289/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-290/main.tf | 4 ++++ .../project-2/project-2-app1-290/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-291/main.tf | 4 ++++ .../project-2/project-2-app1-291/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-292/main.tf | 4 ++++ .../project-2/project-2-app1-292/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-293/main.tf | 4 ++++ .../project-2/project-2-app1-293/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-294/main.tf | 4 ++++ .../project-2/project-2-app1-294/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-295/main.tf | 4 ++++ .../project-2/project-2-app1-295/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-296/main.tf | 4 ++++ .../project-2/project-2-app1-296/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-297/main.tf | 4 ++++ .../project-2/project-2-app1-297/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-298/main.tf | 4 ++++ .../project-2/project-2-app1-298/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-299/main.tf | 4 ++++ .../project-2/project-2-app1-299/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-300/main.tf | 4 ++++ .../project-2/project-2-app1-300/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-301/main.tf | 4 ++++ .../project-2/project-2-app1-301/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-302/main.tf | 4 ++++ .../project-2/project-2-app1-302/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-303/main.tf | 4 ++++ .../project-2/project-2-app1-303/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-304/main.tf | 4 ++++ .../project-2/project-2-app1-304/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-305/main.tf | 4 ++++ .../project-2/project-2-app1-305/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-306/main.tf | 4 ++++ .../project-2/project-2-app1-306/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-307/main.tf | 4 ++++ .../project-2/project-2-app1-307/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-308/main.tf | 4 ++++ .../project-2/project-2-app1-308/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-309/main.tf | 4 ++++ .../project-2/project-2-app1-309/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-310/main.tf | 4 ++++ .../project-2/project-2-app1-310/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-311/main.tf | 4 ++++ .../project-2/project-2-app1-311/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-312/main.tf | 4 ++++ .../project-2/project-2-app1-312/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-313/main.tf | 4 ++++ .../project-2/project-2-app1-313/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-314/main.tf | 4 ++++ .../project-2/project-2-app1-314/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-315/main.tf | 4 ++++ .../project-2/project-2-app1-315/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-316/main.tf | 4 ++++ .../project-2/project-2-app1-316/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-317/main.tf | 4 ++++ .../project-2/project-2-app1-317/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-318/main.tf | 4 ++++ .../project-2/project-2-app1-318/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-319/main.tf | 4 ++++ .../project-2/project-2-app1-319/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-320/main.tf | 4 ++++ .../project-2/project-2-app1-320/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-321/main.tf | 4 ++++ .../project-2/project-2-app1-321/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-322/main.tf | 4 ++++ .../project-2/project-2-app1-322/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-323/main.tf | 4 ++++ .../project-2/project-2-app1-323/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-324/main.tf | 4 ++++ .../project-2/project-2-app1-324/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-325/main.tf | 4 ++++ .../project-2/project-2-app1-325/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-326/main.tf | 4 ++++ .../project-2/project-2-app1-326/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-327/main.tf | 4 ++++ .../project-2/project-2-app1-327/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-328/main.tf | 4 ++++ .../project-2/project-2-app1-328/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-329/main.tf | 4 ++++ .../project-2/project-2-app1-329/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-330/main.tf | 4 ++++ .../project-2/project-2-app1-330/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-331/main.tf | 4 ++++ .../project-2/project-2-app1-331/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-332/main.tf | 4 ++++ .../project-2/project-2-app1-332/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-333/main.tf | 4 ++++ .../project-2/project-2-app1-333/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-334/main.tf | 4 ++++ .../project-2/project-2-app1-334/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-335/main.tf | 4 ++++ .../project-2/project-2-app1-335/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-336/main.tf | 4 ++++ .../project-2/project-2-app1-336/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-337/main.tf | 4 ++++ .../project-2/project-2-app1-337/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-338/main.tf | 4 ++++ .../project-2/project-2-app1-338/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-339/main.tf | 4 ++++ .../project-2/project-2-app1-339/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-340/main.tf | 4 ++++ .../project-2/project-2-app1-340/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-341/main.tf | 4 ++++ .../project-2/project-2-app1-341/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-342/main.tf | 4 ++++ .../project-2/project-2-app1-342/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-343/main.tf | 4 ++++ .../project-2/project-2-app1-343/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-344/main.tf | 4 ++++ .../project-2/project-2-app1-344/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-345/main.tf | 4 ++++ .../project-2/project-2-app1-345/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-346/main.tf | 4 ++++ .../project-2/project-2-app1-346/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-347/main.tf | 4 ++++ .../project-2/project-2-app1-347/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-348/main.tf | 4 ++++ .../project-2/project-2-app1-348/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-349/main.tf | 4 ++++ .../project-2/project-2-app1-349/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-350/main.tf | 4 ++++ .../project-2/project-2-app1-350/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-351/main.tf | 4 ++++ .../project-2/project-2-app1-351/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-352/main.tf | 4 ++++ .../project-2/project-2-app1-352/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-353/main.tf | 4 ++++ .../project-2/project-2-app1-353/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-354/main.tf | 4 ++++ .../project-2/project-2-app1-354/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-355/main.tf | 4 ++++ .../project-2/project-2-app1-355/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-356/main.tf | 4 ++++ .../project-2/project-2-app1-356/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-357/main.tf | 4 ++++ .../project-2/project-2-app1-357/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-358/main.tf | 4 ++++ .../project-2/project-2-app1-358/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-359/main.tf | 4 ++++ .../project-2/project-2-app1-359/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-360/main.tf | 4 ++++ .../project-2/project-2-app1-360/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-361/main.tf | 4 ++++ .../project-2/project-2-app1-361/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-362/main.tf | 4 ++++ .../project-2/project-2-app1-362/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-363/main.tf | 4 ++++ .../project-2/project-2-app1-363/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-364/main.tf | 4 ++++ .../project-2/project-2-app1-364/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-365/main.tf | 4 ++++ .../project-2/project-2-app1-365/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-366/main.tf | 4 ++++ .../project-2/project-2-app1-366/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-367/main.tf | 4 ++++ .../project-2/project-2-app1-367/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-368/main.tf | 4 ++++ .../project-2/project-2-app1-368/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-369/main.tf | 4 ++++ .../project-2/project-2-app1-369/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-370/main.tf | 4 ++++ .../project-2/project-2-app1-370/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-371/main.tf | 4 ++++ .../project-2/project-2-app1-371/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-372/main.tf | 4 ++++ .../project-2/project-2-app1-372/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-373/main.tf | 4 ++++ .../project-2/project-2-app1-373/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-374/main.tf | 4 ++++ .../project-2/project-2-app1-374/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-375/main.tf | 4 ++++ .../project-2/project-2-app1-375/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-376/main.tf | 4 ++++ .../project-2/project-2-app1-376/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-377/main.tf | 4 ++++ .../project-2/project-2-app1-377/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-378/main.tf | 4 ++++ .../project-2/project-2-app1-378/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-379/main.tf | 4 ++++ .../project-2/project-2-app1-379/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-380/main.tf | 4 ++++ .../project-2/project-2-app1-380/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-381/main.tf | 4 ++++ .../project-2/project-2-app1-381/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-382/main.tf | 4 ++++ .../project-2/project-2-app1-382/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-383/main.tf | 4 ++++ .../project-2/project-2-app1-383/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-384/main.tf | 4 ++++ .../project-2/project-2-app1-384/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-385/main.tf | 4 ++++ .../project-2/project-2-app1-385/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-386/main.tf | 4 ++++ .../project-2/project-2-app1-386/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-387/main.tf | 4 ++++ .../project-2/project-2-app1-387/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-388/main.tf | 4 ++++ .../project-2/project-2-app1-388/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-389/main.tf | 4 ++++ .../project-2/project-2-app1-389/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-390/main.tf | 4 ++++ .../project-2/project-2-app1-390/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-391/main.tf | 4 ++++ .../project-2/project-2-app1-391/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-392/main.tf | 4 ++++ .../project-2/project-2-app1-392/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-393/main.tf | 4 ++++ .../project-2/project-2-app1-393/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-394/main.tf | 4 ++++ .../project-2/project-2-app1-394/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-395/main.tf | 4 ++++ .../project-2/project-2-app1-395/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-396/main.tf | 4 ++++ .../project-2/project-2-app1-396/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-397/main.tf | 4 ++++ .../project-2/project-2-app1-397/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-398/main.tf | 4 ++++ .../project-2/project-2-app1-398/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-399/main.tf | 4 ++++ .../project-2/project-2-app1-399/terragrunt.hcl | 12 ++++++++++++ run-all/project-2/project-2-app1-400/main.tf | 4 ++++ .../project-2/project-2-app1-400/terragrunt.hcl | 12 ++++++++++++ 801 files changed, 6414 insertions(+) create mode 100755 run-all/project-2/copy.sh create mode 100644 run-all/project-2/project-2-app1-001/main.tf create mode 100644 run-all/project-2/project-2-app1-001/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-002/main.tf create mode 100644 run-all/project-2/project-2-app1-002/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-003/main.tf create mode 100644 run-all/project-2/project-2-app1-003/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-004/main.tf create mode 100644 run-all/project-2/project-2-app1-004/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-005/main.tf create mode 100644 run-all/project-2/project-2-app1-005/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-006/main.tf create mode 100644 run-all/project-2/project-2-app1-006/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-007/main.tf create mode 100644 run-all/project-2/project-2-app1-007/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-008/main.tf create mode 100644 run-all/project-2/project-2-app1-008/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-009/main.tf create mode 100644 run-all/project-2/project-2-app1-009/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-010/main.tf create mode 100644 run-all/project-2/project-2-app1-010/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-011/main.tf create mode 100644 run-all/project-2/project-2-app1-011/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-012/main.tf create mode 100644 run-all/project-2/project-2-app1-012/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-013/main.tf create mode 100644 run-all/project-2/project-2-app1-013/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-014/main.tf create mode 100644 run-all/project-2/project-2-app1-014/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-015/main.tf create mode 100644 run-all/project-2/project-2-app1-015/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-016/main.tf create mode 100644 run-all/project-2/project-2-app1-016/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-017/main.tf create mode 100644 run-all/project-2/project-2-app1-017/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-018/main.tf create mode 100644 run-all/project-2/project-2-app1-018/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-019/main.tf create mode 100644 run-all/project-2/project-2-app1-019/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-020/main.tf create mode 100644 run-all/project-2/project-2-app1-020/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-021/main.tf create mode 100644 run-all/project-2/project-2-app1-021/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-022/main.tf create mode 100644 run-all/project-2/project-2-app1-022/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-023/main.tf create mode 100644 run-all/project-2/project-2-app1-023/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-024/main.tf create mode 100644 run-all/project-2/project-2-app1-024/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-025/main.tf create mode 100644 run-all/project-2/project-2-app1-025/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-026/main.tf create mode 100644 run-all/project-2/project-2-app1-026/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-027/main.tf create mode 100644 run-all/project-2/project-2-app1-027/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-028/main.tf create mode 100644 run-all/project-2/project-2-app1-028/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-029/main.tf create mode 100644 run-all/project-2/project-2-app1-029/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-030/main.tf create mode 100644 run-all/project-2/project-2-app1-030/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-031/main.tf create mode 100644 run-all/project-2/project-2-app1-031/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-032/main.tf create mode 100644 run-all/project-2/project-2-app1-032/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-033/main.tf create mode 100644 run-all/project-2/project-2-app1-033/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-034/main.tf create mode 100644 run-all/project-2/project-2-app1-034/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-035/main.tf create mode 100644 run-all/project-2/project-2-app1-035/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-036/main.tf create mode 100644 run-all/project-2/project-2-app1-036/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-037/main.tf create mode 100644 run-all/project-2/project-2-app1-037/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-038/main.tf create mode 100644 run-all/project-2/project-2-app1-038/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-039/main.tf create mode 100644 run-all/project-2/project-2-app1-039/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-040/main.tf create mode 100644 run-all/project-2/project-2-app1-040/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-041/main.tf create mode 100644 run-all/project-2/project-2-app1-041/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-042/main.tf create mode 100644 run-all/project-2/project-2-app1-042/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-043/main.tf create mode 100644 run-all/project-2/project-2-app1-043/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-044/main.tf create mode 100644 run-all/project-2/project-2-app1-044/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-045/main.tf create mode 100644 run-all/project-2/project-2-app1-045/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-046/main.tf create mode 100644 run-all/project-2/project-2-app1-046/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-047/main.tf create mode 100644 run-all/project-2/project-2-app1-047/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-048/main.tf create mode 100644 run-all/project-2/project-2-app1-048/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-049/main.tf create mode 100644 run-all/project-2/project-2-app1-049/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-050/main.tf create mode 100644 run-all/project-2/project-2-app1-050/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-051/main.tf create mode 100644 run-all/project-2/project-2-app1-051/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-052/main.tf create mode 100644 run-all/project-2/project-2-app1-052/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-053/main.tf create mode 100644 run-all/project-2/project-2-app1-053/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-054/main.tf create mode 100644 run-all/project-2/project-2-app1-054/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-055/main.tf create mode 100644 run-all/project-2/project-2-app1-055/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-056/main.tf create mode 100644 run-all/project-2/project-2-app1-056/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-057/main.tf create mode 100644 run-all/project-2/project-2-app1-057/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-058/main.tf create mode 100644 run-all/project-2/project-2-app1-058/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-059/main.tf create mode 100644 run-all/project-2/project-2-app1-059/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-060/main.tf create mode 100644 run-all/project-2/project-2-app1-060/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-061/main.tf create mode 100644 run-all/project-2/project-2-app1-061/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-062/main.tf create mode 100644 run-all/project-2/project-2-app1-062/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-063/main.tf create mode 100644 run-all/project-2/project-2-app1-063/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-064/main.tf create mode 100644 run-all/project-2/project-2-app1-064/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-065/main.tf create mode 100644 run-all/project-2/project-2-app1-065/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-066/main.tf create mode 100644 run-all/project-2/project-2-app1-066/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-067/main.tf create mode 100644 run-all/project-2/project-2-app1-067/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-068/main.tf create mode 100644 run-all/project-2/project-2-app1-068/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-069/main.tf create mode 100644 run-all/project-2/project-2-app1-069/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-070/main.tf create mode 100644 run-all/project-2/project-2-app1-070/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-071/main.tf create mode 100644 run-all/project-2/project-2-app1-071/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-072/main.tf create mode 100644 run-all/project-2/project-2-app1-072/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-073/main.tf create mode 100644 run-all/project-2/project-2-app1-073/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-074/main.tf create mode 100644 run-all/project-2/project-2-app1-074/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-075/main.tf create mode 100644 run-all/project-2/project-2-app1-075/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-076/main.tf create mode 100644 run-all/project-2/project-2-app1-076/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-077/main.tf create mode 100644 run-all/project-2/project-2-app1-077/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-078/main.tf create mode 100644 run-all/project-2/project-2-app1-078/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-079/main.tf create mode 100644 run-all/project-2/project-2-app1-079/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-080/main.tf create mode 100644 run-all/project-2/project-2-app1-080/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-081/main.tf create mode 100644 run-all/project-2/project-2-app1-081/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-082/main.tf create mode 100644 run-all/project-2/project-2-app1-082/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-083/main.tf create mode 100644 run-all/project-2/project-2-app1-083/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-084/main.tf create mode 100644 run-all/project-2/project-2-app1-084/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-085/main.tf create mode 100644 run-all/project-2/project-2-app1-085/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-086/main.tf create mode 100644 run-all/project-2/project-2-app1-086/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-087/main.tf create mode 100644 run-all/project-2/project-2-app1-087/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-088/main.tf create mode 100644 run-all/project-2/project-2-app1-088/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-089/main.tf create mode 100644 run-all/project-2/project-2-app1-089/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-090/main.tf create mode 100644 run-all/project-2/project-2-app1-090/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-091/main.tf create mode 100644 run-all/project-2/project-2-app1-091/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-092/main.tf create mode 100644 run-all/project-2/project-2-app1-092/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-093/main.tf create mode 100644 run-all/project-2/project-2-app1-093/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-094/main.tf create mode 100644 run-all/project-2/project-2-app1-094/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-095/main.tf create mode 100644 run-all/project-2/project-2-app1-095/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-096/main.tf create mode 100644 run-all/project-2/project-2-app1-096/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-097/main.tf create mode 100644 run-all/project-2/project-2-app1-097/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-098/main.tf create mode 100644 run-all/project-2/project-2-app1-098/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-099/main.tf create mode 100644 run-all/project-2/project-2-app1-099/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-100/main.tf create mode 100644 run-all/project-2/project-2-app1-100/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-101/main.tf create mode 100644 run-all/project-2/project-2-app1-101/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-102/main.tf create mode 100644 run-all/project-2/project-2-app1-102/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-103/main.tf create mode 100644 run-all/project-2/project-2-app1-103/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-104/main.tf create mode 100644 run-all/project-2/project-2-app1-104/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-105/main.tf create mode 100644 run-all/project-2/project-2-app1-105/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-106/main.tf create mode 100644 run-all/project-2/project-2-app1-106/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-107/main.tf create mode 100644 run-all/project-2/project-2-app1-107/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-108/main.tf create mode 100644 run-all/project-2/project-2-app1-108/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-109/main.tf create mode 100644 run-all/project-2/project-2-app1-109/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-110/main.tf create mode 100644 run-all/project-2/project-2-app1-110/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-111/main.tf create mode 100644 run-all/project-2/project-2-app1-111/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-112/main.tf create mode 100644 run-all/project-2/project-2-app1-112/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-113/main.tf create mode 100644 run-all/project-2/project-2-app1-113/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-114/main.tf create mode 100644 run-all/project-2/project-2-app1-114/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-115/main.tf create mode 100644 run-all/project-2/project-2-app1-115/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-116/main.tf create mode 100644 run-all/project-2/project-2-app1-116/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-117/main.tf create mode 100644 run-all/project-2/project-2-app1-117/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-118/main.tf create mode 100644 run-all/project-2/project-2-app1-118/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-119/main.tf create mode 100644 run-all/project-2/project-2-app1-119/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-120/main.tf create mode 100644 run-all/project-2/project-2-app1-120/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-121/main.tf create mode 100644 run-all/project-2/project-2-app1-121/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-122/main.tf create mode 100644 run-all/project-2/project-2-app1-122/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-123/main.tf create mode 100644 run-all/project-2/project-2-app1-123/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-124/main.tf create mode 100644 run-all/project-2/project-2-app1-124/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-125/main.tf create mode 100644 run-all/project-2/project-2-app1-125/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-126/main.tf create mode 100644 run-all/project-2/project-2-app1-126/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-127/main.tf create mode 100644 run-all/project-2/project-2-app1-127/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-128/main.tf create mode 100644 run-all/project-2/project-2-app1-128/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-129/main.tf create mode 100644 run-all/project-2/project-2-app1-129/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-130/main.tf create mode 100644 run-all/project-2/project-2-app1-130/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-131/main.tf create mode 100644 run-all/project-2/project-2-app1-131/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-132/main.tf create mode 100644 run-all/project-2/project-2-app1-132/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-133/main.tf create mode 100644 run-all/project-2/project-2-app1-133/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-134/main.tf create mode 100644 run-all/project-2/project-2-app1-134/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-135/main.tf create mode 100644 run-all/project-2/project-2-app1-135/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-136/main.tf create mode 100644 run-all/project-2/project-2-app1-136/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-137/main.tf create mode 100644 run-all/project-2/project-2-app1-137/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-138/main.tf create mode 100644 run-all/project-2/project-2-app1-138/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-139/main.tf create mode 100644 run-all/project-2/project-2-app1-139/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-140/main.tf create mode 100644 run-all/project-2/project-2-app1-140/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-141/main.tf create mode 100644 run-all/project-2/project-2-app1-141/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-142/main.tf create mode 100644 run-all/project-2/project-2-app1-142/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-143/main.tf create mode 100644 run-all/project-2/project-2-app1-143/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-144/main.tf create mode 100644 run-all/project-2/project-2-app1-144/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-145/main.tf create mode 100644 run-all/project-2/project-2-app1-145/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-146/main.tf create mode 100644 run-all/project-2/project-2-app1-146/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-147/main.tf create mode 100644 run-all/project-2/project-2-app1-147/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-148/main.tf create mode 100644 run-all/project-2/project-2-app1-148/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-149/main.tf create mode 100644 run-all/project-2/project-2-app1-149/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-150/main.tf create mode 100644 run-all/project-2/project-2-app1-150/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-151/main.tf create mode 100644 run-all/project-2/project-2-app1-151/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-152/main.tf create mode 100644 run-all/project-2/project-2-app1-152/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-153/main.tf create mode 100644 run-all/project-2/project-2-app1-153/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-154/main.tf create mode 100644 run-all/project-2/project-2-app1-154/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-155/main.tf create mode 100644 run-all/project-2/project-2-app1-155/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-156/main.tf create mode 100644 run-all/project-2/project-2-app1-156/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-157/main.tf create mode 100644 run-all/project-2/project-2-app1-157/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-158/main.tf create mode 100644 run-all/project-2/project-2-app1-158/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-159/main.tf create mode 100644 run-all/project-2/project-2-app1-159/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-160/main.tf create mode 100644 run-all/project-2/project-2-app1-160/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-161/main.tf create mode 100644 run-all/project-2/project-2-app1-161/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-162/main.tf create mode 100644 run-all/project-2/project-2-app1-162/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-163/main.tf create mode 100644 run-all/project-2/project-2-app1-163/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-164/main.tf create mode 100644 run-all/project-2/project-2-app1-164/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-165/main.tf create mode 100644 run-all/project-2/project-2-app1-165/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-166/main.tf create mode 100644 run-all/project-2/project-2-app1-166/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-167/main.tf create mode 100644 run-all/project-2/project-2-app1-167/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-168/main.tf create mode 100644 run-all/project-2/project-2-app1-168/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-169/main.tf create mode 100644 run-all/project-2/project-2-app1-169/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-170/main.tf create mode 100644 run-all/project-2/project-2-app1-170/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-171/main.tf create mode 100644 run-all/project-2/project-2-app1-171/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-172/main.tf create mode 100644 run-all/project-2/project-2-app1-172/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-173/main.tf create mode 100644 run-all/project-2/project-2-app1-173/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-174/main.tf create mode 100644 run-all/project-2/project-2-app1-174/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-175/main.tf create mode 100644 run-all/project-2/project-2-app1-175/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-176/main.tf create mode 100644 run-all/project-2/project-2-app1-176/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-177/main.tf create mode 100644 run-all/project-2/project-2-app1-177/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-178/main.tf create mode 100644 run-all/project-2/project-2-app1-178/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-179/main.tf create mode 100644 run-all/project-2/project-2-app1-179/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-180/main.tf create mode 100644 run-all/project-2/project-2-app1-180/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-181/main.tf create mode 100644 run-all/project-2/project-2-app1-181/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-182/main.tf create mode 100644 run-all/project-2/project-2-app1-182/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-183/main.tf create mode 100644 run-all/project-2/project-2-app1-183/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-184/main.tf create mode 100644 run-all/project-2/project-2-app1-184/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-185/main.tf create mode 100644 run-all/project-2/project-2-app1-185/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-186/main.tf create mode 100644 run-all/project-2/project-2-app1-186/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-187/main.tf create mode 100644 run-all/project-2/project-2-app1-187/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-188/main.tf create mode 100644 run-all/project-2/project-2-app1-188/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-189/main.tf create mode 100644 run-all/project-2/project-2-app1-189/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-190/main.tf create mode 100644 run-all/project-2/project-2-app1-190/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-191/main.tf create mode 100644 run-all/project-2/project-2-app1-191/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-192/main.tf create mode 100644 run-all/project-2/project-2-app1-192/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-193/main.tf create mode 100644 run-all/project-2/project-2-app1-193/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-194/main.tf create mode 100644 run-all/project-2/project-2-app1-194/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-195/main.tf create mode 100644 run-all/project-2/project-2-app1-195/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-196/main.tf create mode 100644 run-all/project-2/project-2-app1-196/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-197/main.tf create mode 100644 run-all/project-2/project-2-app1-197/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-198/main.tf create mode 100644 run-all/project-2/project-2-app1-198/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-199/main.tf create mode 100644 run-all/project-2/project-2-app1-199/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-200/main.tf create mode 100644 run-all/project-2/project-2-app1-200/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-201/main.tf create mode 100644 run-all/project-2/project-2-app1-201/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-202/main.tf create mode 100644 run-all/project-2/project-2-app1-202/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-203/main.tf create mode 100644 run-all/project-2/project-2-app1-203/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-204/main.tf create mode 100644 run-all/project-2/project-2-app1-204/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-205/main.tf create mode 100644 run-all/project-2/project-2-app1-205/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-206/main.tf create mode 100644 run-all/project-2/project-2-app1-206/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-207/main.tf create mode 100644 run-all/project-2/project-2-app1-207/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-208/main.tf create mode 100644 run-all/project-2/project-2-app1-208/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-209/main.tf create mode 100644 run-all/project-2/project-2-app1-209/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-210/main.tf create mode 100644 run-all/project-2/project-2-app1-210/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-211/main.tf create mode 100644 run-all/project-2/project-2-app1-211/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-212/main.tf create mode 100644 run-all/project-2/project-2-app1-212/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-213/main.tf create mode 100644 run-all/project-2/project-2-app1-213/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-214/main.tf create mode 100644 run-all/project-2/project-2-app1-214/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-215/main.tf create mode 100644 run-all/project-2/project-2-app1-215/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-216/main.tf create mode 100644 run-all/project-2/project-2-app1-216/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-217/main.tf create mode 100644 run-all/project-2/project-2-app1-217/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-218/main.tf create mode 100644 run-all/project-2/project-2-app1-218/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-219/main.tf create mode 100644 run-all/project-2/project-2-app1-219/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-220/main.tf create mode 100644 run-all/project-2/project-2-app1-220/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-221/main.tf create mode 100644 run-all/project-2/project-2-app1-221/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-222/main.tf create mode 100644 run-all/project-2/project-2-app1-222/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-223/main.tf create mode 100644 run-all/project-2/project-2-app1-223/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-224/main.tf create mode 100644 run-all/project-2/project-2-app1-224/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-225/main.tf create mode 100644 run-all/project-2/project-2-app1-225/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-226/main.tf create mode 100644 run-all/project-2/project-2-app1-226/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-227/main.tf create mode 100644 run-all/project-2/project-2-app1-227/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-228/main.tf create mode 100644 run-all/project-2/project-2-app1-228/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-229/main.tf create mode 100644 run-all/project-2/project-2-app1-229/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-230/main.tf create mode 100644 run-all/project-2/project-2-app1-230/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-231/main.tf create mode 100644 run-all/project-2/project-2-app1-231/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-232/main.tf create mode 100644 run-all/project-2/project-2-app1-232/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-233/main.tf create mode 100644 run-all/project-2/project-2-app1-233/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-234/main.tf create mode 100644 run-all/project-2/project-2-app1-234/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-235/main.tf create mode 100644 run-all/project-2/project-2-app1-235/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-236/main.tf create mode 100644 run-all/project-2/project-2-app1-236/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-237/main.tf create mode 100644 run-all/project-2/project-2-app1-237/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-238/main.tf create mode 100644 run-all/project-2/project-2-app1-238/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-239/main.tf create mode 100644 run-all/project-2/project-2-app1-239/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-240/main.tf create mode 100644 run-all/project-2/project-2-app1-240/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-241/main.tf create mode 100644 run-all/project-2/project-2-app1-241/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-242/main.tf create mode 100644 run-all/project-2/project-2-app1-242/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-243/main.tf create mode 100644 run-all/project-2/project-2-app1-243/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-244/main.tf create mode 100644 run-all/project-2/project-2-app1-244/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-245/main.tf create mode 100644 run-all/project-2/project-2-app1-245/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-246/main.tf create mode 100644 run-all/project-2/project-2-app1-246/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-247/main.tf create mode 100644 run-all/project-2/project-2-app1-247/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-248/main.tf create mode 100644 run-all/project-2/project-2-app1-248/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-249/main.tf create mode 100644 run-all/project-2/project-2-app1-249/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-250/main.tf create mode 100644 run-all/project-2/project-2-app1-250/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-251/main.tf create mode 100644 run-all/project-2/project-2-app1-251/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-252/main.tf create mode 100644 run-all/project-2/project-2-app1-252/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-253/main.tf create mode 100644 run-all/project-2/project-2-app1-253/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-254/main.tf create mode 100644 run-all/project-2/project-2-app1-254/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-255/main.tf create mode 100644 run-all/project-2/project-2-app1-255/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-256/main.tf create mode 100644 run-all/project-2/project-2-app1-256/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-257/main.tf create mode 100644 run-all/project-2/project-2-app1-257/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-258/main.tf create mode 100644 run-all/project-2/project-2-app1-258/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-259/main.tf create mode 100644 run-all/project-2/project-2-app1-259/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-260/main.tf create mode 100644 run-all/project-2/project-2-app1-260/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-261/main.tf create mode 100644 run-all/project-2/project-2-app1-261/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-262/main.tf create mode 100644 run-all/project-2/project-2-app1-262/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-263/main.tf create mode 100644 run-all/project-2/project-2-app1-263/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-264/main.tf create mode 100644 run-all/project-2/project-2-app1-264/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-265/main.tf create mode 100644 run-all/project-2/project-2-app1-265/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-266/main.tf create mode 100644 run-all/project-2/project-2-app1-266/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-267/main.tf create mode 100644 run-all/project-2/project-2-app1-267/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-268/main.tf create mode 100644 run-all/project-2/project-2-app1-268/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-269/main.tf create mode 100644 run-all/project-2/project-2-app1-269/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-270/main.tf create mode 100644 run-all/project-2/project-2-app1-270/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-271/main.tf create mode 100644 run-all/project-2/project-2-app1-271/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-272/main.tf create mode 100644 run-all/project-2/project-2-app1-272/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-273/main.tf create mode 100644 run-all/project-2/project-2-app1-273/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-274/main.tf create mode 100644 run-all/project-2/project-2-app1-274/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-275/main.tf create mode 100644 run-all/project-2/project-2-app1-275/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-276/main.tf create mode 100644 run-all/project-2/project-2-app1-276/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-277/main.tf create mode 100644 run-all/project-2/project-2-app1-277/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-278/main.tf create mode 100644 run-all/project-2/project-2-app1-278/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-279/main.tf create mode 100644 run-all/project-2/project-2-app1-279/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-280/main.tf create mode 100644 run-all/project-2/project-2-app1-280/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-281/main.tf create mode 100644 run-all/project-2/project-2-app1-281/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-282/main.tf create mode 100644 run-all/project-2/project-2-app1-282/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-283/main.tf create mode 100644 run-all/project-2/project-2-app1-283/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-284/main.tf create mode 100644 run-all/project-2/project-2-app1-284/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-285/main.tf create mode 100644 run-all/project-2/project-2-app1-285/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-286/main.tf create mode 100644 run-all/project-2/project-2-app1-286/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-287/main.tf create mode 100644 run-all/project-2/project-2-app1-287/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-288/main.tf create mode 100644 run-all/project-2/project-2-app1-288/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-289/main.tf create mode 100644 run-all/project-2/project-2-app1-289/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-290/main.tf create mode 100644 run-all/project-2/project-2-app1-290/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-291/main.tf create mode 100644 run-all/project-2/project-2-app1-291/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-292/main.tf create mode 100644 run-all/project-2/project-2-app1-292/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-293/main.tf create mode 100644 run-all/project-2/project-2-app1-293/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-294/main.tf create mode 100644 run-all/project-2/project-2-app1-294/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-295/main.tf create mode 100644 run-all/project-2/project-2-app1-295/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-296/main.tf create mode 100644 run-all/project-2/project-2-app1-296/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-297/main.tf create mode 100644 run-all/project-2/project-2-app1-297/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-298/main.tf create mode 100644 run-all/project-2/project-2-app1-298/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-299/main.tf create mode 100644 run-all/project-2/project-2-app1-299/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-300/main.tf create mode 100644 run-all/project-2/project-2-app1-300/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-301/main.tf create mode 100644 run-all/project-2/project-2-app1-301/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-302/main.tf create mode 100644 run-all/project-2/project-2-app1-302/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-303/main.tf create mode 100644 run-all/project-2/project-2-app1-303/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-304/main.tf create mode 100644 run-all/project-2/project-2-app1-304/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-305/main.tf create mode 100644 run-all/project-2/project-2-app1-305/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-306/main.tf create mode 100644 run-all/project-2/project-2-app1-306/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-307/main.tf create mode 100644 run-all/project-2/project-2-app1-307/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-308/main.tf create mode 100644 run-all/project-2/project-2-app1-308/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-309/main.tf create mode 100644 run-all/project-2/project-2-app1-309/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-310/main.tf create mode 100644 run-all/project-2/project-2-app1-310/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-311/main.tf create mode 100644 run-all/project-2/project-2-app1-311/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-312/main.tf create mode 100644 run-all/project-2/project-2-app1-312/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-313/main.tf create mode 100644 run-all/project-2/project-2-app1-313/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-314/main.tf create mode 100644 run-all/project-2/project-2-app1-314/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-315/main.tf create mode 100644 run-all/project-2/project-2-app1-315/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-316/main.tf create mode 100644 run-all/project-2/project-2-app1-316/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-317/main.tf create mode 100644 run-all/project-2/project-2-app1-317/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-318/main.tf create mode 100644 run-all/project-2/project-2-app1-318/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-319/main.tf create mode 100644 run-all/project-2/project-2-app1-319/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-320/main.tf create mode 100644 run-all/project-2/project-2-app1-320/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-321/main.tf create mode 100644 run-all/project-2/project-2-app1-321/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-322/main.tf create mode 100644 run-all/project-2/project-2-app1-322/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-323/main.tf create mode 100644 run-all/project-2/project-2-app1-323/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-324/main.tf create mode 100644 run-all/project-2/project-2-app1-324/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-325/main.tf create mode 100644 run-all/project-2/project-2-app1-325/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-326/main.tf create mode 100644 run-all/project-2/project-2-app1-326/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-327/main.tf create mode 100644 run-all/project-2/project-2-app1-327/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-328/main.tf create mode 100644 run-all/project-2/project-2-app1-328/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-329/main.tf create mode 100644 run-all/project-2/project-2-app1-329/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-330/main.tf create mode 100644 run-all/project-2/project-2-app1-330/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-331/main.tf create mode 100644 run-all/project-2/project-2-app1-331/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-332/main.tf create mode 100644 run-all/project-2/project-2-app1-332/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-333/main.tf create mode 100644 run-all/project-2/project-2-app1-333/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-334/main.tf create mode 100644 run-all/project-2/project-2-app1-334/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-335/main.tf create mode 100644 run-all/project-2/project-2-app1-335/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-336/main.tf create mode 100644 run-all/project-2/project-2-app1-336/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-337/main.tf create mode 100644 run-all/project-2/project-2-app1-337/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-338/main.tf create mode 100644 run-all/project-2/project-2-app1-338/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-339/main.tf create mode 100644 run-all/project-2/project-2-app1-339/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-340/main.tf create mode 100644 run-all/project-2/project-2-app1-340/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-341/main.tf create mode 100644 run-all/project-2/project-2-app1-341/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-342/main.tf create mode 100644 run-all/project-2/project-2-app1-342/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-343/main.tf create mode 100644 run-all/project-2/project-2-app1-343/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-344/main.tf create mode 100644 run-all/project-2/project-2-app1-344/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-345/main.tf create mode 100644 run-all/project-2/project-2-app1-345/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-346/main.tf create mode 100644 run-all/project-2/project-2-app1-346/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-347/main.tf create mode 100644 run-all/project-2/project-2-app1-347/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-348/main.tf create mode 100644 run-all/project-2/project-2-app1-348/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-349/main.tf create mode 100644 run-all/project-2/project-2-app1-349/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-350/main.tf create mode 100644 run-all/project-2/project-2-app1-350/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-351/main.tf create mode 100644 run-all/project-2/project-2-app1-351/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-352/main.tf create mode 100644 run-all/project-2/project-2-app1-352/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-353/main.tf create mode 100644 run-all/project-2/project-2-app1-353/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-354/main.tf create mode 100644 run-all/project-2/project-2-app1-354/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-355/main.tf create mode 100644 run-all/project-2/project-2-app1-355/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-356/main.tf create mode 100644 run-all/project-2/project-2-app1-356/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-357/main.tf create mode 100644 run-all/project-2/project-2-app1-357/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-358/main.tf create mode 100644 run-all/project-2/project-2-app1-358/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-359/main.tf create mode 100644 run-all/project-2/project-2-app1-359/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-360/main.tf create mode 100644 run-all/project-2/project-2-app1-360/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-361/main.tf create mode 100644 run-all/project-2/project-2-app1-361/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-362/main.tf create mode 100644 run-all/project-2/project-2-app1-362/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-363/main.tf create mode 100644 run-all/project-2/project-2-app1-363/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-364/main.tf create mode 100644 run-all/project-2/project-2-app1-364/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-365/main.tf create mode 100644 run-all/project-2/project-2-app1-365/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-366/main.tf create mode 100644 run-all/project-2/project-2-app1-366/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-367/main.tf create mode 100644 run-all/project-2/project-2-app1-367/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-368/main.tf create mode 100644 run-all/project-2/project-2-app1-368/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-369/main.tf create mode 100644 run-all/project-2/project-2-app1-369/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-370/main.tf create mode 100644 run-all/project-2/project-2-app1-370/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-371/main.tf create mode 100644 run-all/project-2/project-2-app1-371/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-372/main.tf create mode 100644 run-all/project-2/project-2-app1-372/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-373/main.tf create mode 100644 run-all/project-2/project-2-app1-373/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-374/main.tf create mode 100644 run-all/project-2/project-2-app1-374/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-375/main.tf create mode 100644 run-all/project-2/project-2-app1-375/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-376/main.tf create mode 100644 run-all/project-2/project-2-app1-376/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-377/main.tf create mode 100644 run-all/project-2/project-2-app1-377/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-378/main.tf create mode 100644 run-all/project-2/project-2-app1-378/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-379/main.tf create mode 100644 run-all/project-2/project-2-app1-379/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-380/main.tf create mode 100644 run-all/project-2/project-2-app1-380/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-381/main.tf create mode 100644 run-all/project-2/project-2-app1-381/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-382/main.tf create mode 100644 run-all/project-2/project-2-app1-382/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-383/main.tf create mode 100644 run-all/project-2/project-2-app1-383/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-384/main.tf create mode 100644 run-all/project-2/project-2-app1-384/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-385/main.tf create mode 100644 run-all/project-2/project-2-app1-385/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-386/main.tf create mode 100644 run-all/project-2/project-2-app1-386/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-387/main.tf create mode 100644 run-all/project-2/project-2-app1-387/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-388/main.tf create mode 100644 run-all/project-2/project-2-app1-388/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-389/main.tf create mode 100644 run-all/project-2/project-2-app1-389/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-390/main.tf create mode 100644 run-all/project-2/project-2-app1-390/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-391/main.tf create mode 100644 run-all/project-2/project-2-app1-391/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-392/main.tf create mode 100644 run-all/project-2/project-2-app1-392/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-393/main.tf create mode 100644 run-all/project-2/project-2-app1-393/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-394/main.tf create mode 100644 run-all/project-2/project-2-app1-394/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-395/main.tf create mode 100644 run-all/project-2/project-2-app1-395/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-396/main.tf create mode 100644 run-all/project-2/project-2-app1-396/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-397/main.tf create mode 100644 run-all/project-2/project-2-app1-397/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-398/main.tf create mode 100644 run-all/project-2/project-2-app1-398/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-399/main.tf create mode 100644 run-all/project-2/project-2-app1-399/terragrunt.hcl create mode 100644 run-all/project-2/project-2-app1-400/main.tf create mode 100644 run-all/project-2/project-2-app1-400/terragrunt.hcl diff --git a/run-all/project-2/copy.sh b/run-all/project-2/copy.sh new file mode 100755 index 0000000..349edda --- /dev/null +++ b/run-all/project-2/copy.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +BASE_NAME="project-2-app1" + +for i in $(seq -w 1 400) +do + # Define the target folder name with zero-padded index + TARGET_FOLDER="${BASE_NAME}-${i}" + + # Copy the source folder to the target folder + cp -r "$BASE_NAME" "$TARGET_FOLDER" + + echo "Created $TARGET_FOLDER" +done \ No newline at end of file diff --git a/run-all/project-2/project-2-app1-001/main.tf b/run-all/project-2/project-2-app1-001/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-001/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-001/terragrunt.hcl b/run-all/project-2/project-2-app1-001/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-001/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-002/main.tf b/run-all/project-2/project-2-app1-002/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-002/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-002/terragrunt.hcl b/run-all/project-2/project-2-app1-002/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-002/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-003/main.tf b/run-all/project-2/project-2-app1-003/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-003/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-003/terragrunt.hcl b/run-all/project-2/project-2-app1-003/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-003/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-004/main.tf b/run-all/project-2/project-2-app1-004/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-004/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-004/terragrunt.hcl b/run-all/project-2/project-2-app1-004/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-004/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-005/main.tf b/run-all/project-2/project-2-app1-005/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-005/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-005/terragrunt.hcl b/run-all/project-2/project-2-app1-005/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-005/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-006/main.tf b/run-all/project-2/project-2-app1-006/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-006/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-006/terragrunt.hcl b/run-all/project-2/project-2-app1-006/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-006/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-007/main.tf b/run-all/project-2/project-2-app1-007/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-007/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-007/terragrunt.hcl b/run-all/project-2/project-2-app1-007/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-007/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-008/main.tf b/run-all/project-2/project-2-app1-008/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-008/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-008/terragrunt.hcl b/run-all/project-2/project-2-app1-008/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-008/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-009/main.tf b/run-all/project-2/project-2-app1-009/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-009/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-009/terragrunt.hcl b/run-all/project-2/project-2-app1-009/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-009/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-010/main.tf b/run-all/project-2/project-2-app1-010/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-010/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-010/terragrunt.hcl b/run-all/project-2/project-2-app1-010/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-010/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-011/main.tf b/run-all/project-2/project-2-app1-011/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-011/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-011/terragrunt.hcl b/run-all/project-2/project-2-app1-011/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-011/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-012/main.tf b/run-all/project-2/project-2-app1-012/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-012/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-012/terragrunt.hcl b/run-all/project-2/project-2-app1-012/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-012/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-013/main.tf b/run-all/project-2/project-2-app1-013/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-013/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-013/terragrunt.hcl b/run-all/project-2/project-2-app1-013/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-013/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-014/main.tf b/run-all/project-2/project-2-app1-014/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-014/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-014/terragrunt.hcl b/run-all/project-2/project-2-app1-014/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-014/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-015/main.tf b/run-all/project-2/project-2-app1-015/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-015/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-015/terragrunt.hcl b/run-all/project-2/project-2-app1-015/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-015/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-016/main.tf b/run-all/project-2/project-2-app1-016/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-016/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-016/terragrunt.hcl b/run-all/project-2/project-2-app1-016/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-016/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-017/main.tf b/run-all/project-2/project-2-app1-017/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-017/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-017/terragrunt.hcl b/run-all/project-2/project-2-app1-017/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-017/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-018/main.tf b/run-all/project-2/project-2-app1-018/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-018/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-018/terragrunt.hcl b/run-all/project-2/project-2-app1-018/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-018/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-019/main.tf b/run-all/project-2/project-2-app1-019/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-019/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-019/terragrunt.hcl b/run-all/project-2/project-2-app1-019/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-019/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-020/main.tf b/run-all/project-2/project-2-app1-020/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-020/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-020/terragrunt.hcl b/run-all/project-2/project-2-app1-020/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-020/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-021/main.tf b/run-all/project-2/project-2-app1-021/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-021/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-021/terragrunt.hcl b/run-all/project-2/project-2-app1-021/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-021/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-022/main.tf b/run-all/project-2/project-2-app1-022/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-022/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-022/terragrunt.hcl b/run-all/project-2/project-2-app1-022/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-022/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-023/main.tf b/run-all/project-2/project-2-app1-023/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-023/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-023/terragrunt.hcl b/run-all/project-2/project-2-app1-023/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-023/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-024/main.tf b/run-all/project-2/project-2-app1-024/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-024/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-024/terragrunt.hcl b/run-all/project-2/project-2-app1-024/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-024/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-025/main.tf b/run-all/project-2/project-2-app1-025/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-025/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-025/terragrunt.hcl b/run-all/project-2/project-2-app1-025/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-025/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-026/main.tf b/run-all/project-2/project-2-app1-026/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-026/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-026/terragrunt.hcl b/run-all/project-2/project-2-app1-026/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-026/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-027/main.tf b/run-all/project-2/project-2-app1-027/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-027/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-027/terragrunt.hcl b/run-all/project-2/project-2-app1-027/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-027/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-028/main.tf b/run-all/project-2/project-2-app1-028/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-028/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-028/terragrunt.hcl b/run-all/project-2/project-2-app1-028/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-028/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-029/main.tf b/run-all/project-2/project-2-app1-029/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-029/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-029/terragrunt.hcl b/run-all/project-2/project-2-app1-029/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-029/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-030/main.tf b/run-all/project-2/project-2-app1-030/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-030/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-030/terragrunt.hcl b/run-all/project-2/project-2-app1-030/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-030/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-031/main.tf b/run-all/project-2/project-2-app1-031/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-031/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-031/terragrunt.hcl b/run-all/project-2/project-2-app1-031/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-031/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-032/main.tf b/run-all/project-2/project-2-app1-032/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-032/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-032/terragrunt.hcl b/run-all/project-2/project-2-app1-032/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-032/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-033/main.tf b/run-all/project-2/project-2-app1-033/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-033/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-033/terragrunt.hcl b/run-all/project-2/project-2-app1-033/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-033/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-034/main.tf b/run-all/project-2/project-2-app1-034/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-034/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-034/terragrunt.hcl b/run-all/project-2/project-2-app1-034/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-034/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-035/main.tf b/run-all/project-2/project-2-app1-035/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-035/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-035/terragrunt.hcl b/run-all/project-2/project-2-app1-035/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-035/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-036/main.tf b/run-all/project-2/project-2-app1-036/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-036/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-036/terragrunt.hcl b/run-all/project-2/project-2-app1-036/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-036/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-037/main.tf b/run-all/project-2/project-2-app1-037/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-037/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-037/terragrunt.hcl b/run-all/project-2/project-2-app1-037/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-037/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-038/main.tf b/run-all/project-2/project-2-app1-038/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-038/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-038/terragrunt.hcl b/run-all/project-2/project-2-app1-038/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-038/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-039/main.tf b/run-all/project-2/project-2-app1-039/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-039/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-039/terragrunt.hcl b/run-all/project-2/project-2-app1-039/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-039/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-040/main.tf b/run-all/project-2/project-2-app1-040/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-040/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-040/terragrunt.hcl b/run-all/project-2/project-2-app1-040/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-040/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-041/main.tf b/run-all/project-2/project-2-app1-041/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-041/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-041/terragrunt.hcl b/run-all/project-2/project-2-app1-041/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-041/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-042/main.tf b/run-all/project-2/project-2-app1-042/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-042/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-042/terragrunt.hcl b/run-all/project-2/project-2-app1-042/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-042/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-043/main.tf b/run-all/project-2/project-2-app1-043/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-043/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-043/terragrunt.hcl b/run-all/project-2/project-2-app1-043/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-043/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-044/main.tf b/run-all/project-2/project-2-app1-044/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-044/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-044/terragrunt.hcl b/run-all/project-2/project-2-app1-044/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-044/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-045/main.tf b/run-all/project-2/project-2-app1-045/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-045/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-045/terragrunt.hcl b/run-all/project-2/project-2-app1-045/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-045/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-046/main.tf b/run-all/project-2/project-2-app1-046/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-046/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-046/terragrunt.hcl b/run-all/project-2/project-2-app1-046/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-046/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-047/main.tf b/run-all/project-2/project-2-app1-047/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-047/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-047/terragrunt.hcl b/run-all/project-2/project-2-app1-047/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-047/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-048/main.tf b/run-all/project-2/project-2-app1-048/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-048/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-048/terragrunt.hcl b/run-all/project-2/project-2-app1-048/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-048/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-049/main.tf b/run-all/project-2/project-2-app1-049/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-049/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-049/terragrunt.hcl b/run-all/project-2/project-2-app1-049/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-049/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-050/main.tf b/run-all/project-2/project-2-app1-050/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-050/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-050/terragrunt.hcl b/run-all/project-2/project-2-app1-050/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-050/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-051/main.tf b/run-all/project-2/project-2-app1-051/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-051/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-051/terragrunt.hcl b/run-all/project-2/project-2-app1-051/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-051/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-052/main.tf b/run-all/project-2/project-2-app1-052/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-052/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-052/terragrunt.hcl b/run-all/project-2/project-2-app1-052/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-052/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-053/main.tf b/run-all/project-2/project-2-app1-053/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-053/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-053/terragrunt.hcl b/run-all/project-2/project-2-app1-053/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-053/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-054/main.tf b/run-all/project-2/project-2-app1-054/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-054/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-054/terragrunt.hcl b/run-all/project-2/project-2-app1-054/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-054/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-055/main.tf b/run-all/project-2/project-2-app1-055/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-055/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-055/terragrunt.hcl b/run-all/project-2/project-2-app1-055/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-055/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-056/main.tf b/run-all/project-2/project-2-app1-056/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-056/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-056/terragrunt.hcl b/run-all/project-2/project-2-app1-056/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-056/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-057/main.tf b/run-all/project-2/project-2-app1-057/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-057/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-057/terragrunt.hcl b/run-all/project-2/project-2-app1-057/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-057/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-058/main.tf b/run-all/project-2/project-2-app1-058/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-058/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-058/terragrunt.hcl b/run-all/project-2/project-2-app1-058/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-058/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-059/main.tf b/run-all/project-2/project-2-app1-059/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-059/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-059/terragrunt.hcl b/run-all/project-2/project-2-app1-059/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-059/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-060/main.tf b/run-all/project-2/project-2-app1-060/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-060/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-060/terragrunt.hcl b/run-all/project-2/project-2-app1-060/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-060/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-061/main.tf b/run-all/project-2/project-2-app1-061/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-061/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-061/terragrunt.hcl b/run-all/project-2/project-2-app1-061/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-061/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-062/main.tf b/run-all/project-2/project-2-app1-062/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-062/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-062/terragrunt.hcl b/run-all/project-2/project-2-app1-062/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-062/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-063/main.tf b/run-all/project-2/project-2-app1-063/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-063/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-063/terragrunt.hcl b/run-all/project-2/project-2-app1-063/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-063/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-064/main.tf b/run-all/project-2/project-2-app1-064/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-064/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-064/terragrunt.hcl b/run-all/project-2/project-2-app1-064/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-064/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-065/main.tf b/run-all/project-2/project-2-app1-065/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-065/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-065/terragrunt.hcl b/run-all/project-2/project-2-app1-065/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-065/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-066/main.tf b/run-all/project-2/project-2-app1-066/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-066/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-066/terragrunt.hcl b/run-all/project-2/project-2-app1-066/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-066/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-067/main.tf b/run-all/project-2/project-2-app1-067/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-067/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-067/terragrunt.hcl b/run-all/project-2/project-2-app1-067/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-067/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-068/main.tf b/run-all/project-2/project-2-app1-068/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-068/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-068/terragrunt.hcl b/run-all/project-2/project-2-app1-068/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-068/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-069/main.tf b/run-all/project-2/project-2-app1-069/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-069/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-069/terragrunt.hcl b/run-all/project-2/project-2-app1-069/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-069/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-070/main.tf b/run-all/project-2/project-2-app1-070/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-070/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-070/terragrunt.hcl b/run-all/project-2/project-2-app1-070/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-070/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-071/main.tf b/run-all/project-2/project-2-app1-071/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-071/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-071/terragrunt.hcl b/run-all/project-2/project-2-app1-071/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-071/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-072/main.tf b/run-all/project-2/project-2-app1-072/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-072/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-072/terragrunt.hcl b/run-all/project-2/project-2-app1-072/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-072/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-073/main.tf b/run-all/project-2/project-2-app1-073/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-073/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-073/terragrunt.hcl b/run-all/project-2/project-2-app1-073/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-073/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-074/main.tf b/run-all/project-2/project-2-app1-074/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-074/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-074/terragrunt.hcl b/run-all/project-2/project-2-app1-074/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-074/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-075/main.tf b/run-all/project-2/project-2-app1-075/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-075/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-075/terragrunt.hcl b/run-all/project-2/project-2-app1-075/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-075/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-076/main.tf b/run-all/project-2/project-2-app1-076/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-076/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-076/terragrunt.hcl b/run-all/project-2/project-2-app1-076/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-076/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-077/main.tf b/run-all/project-2/project-2-app1-077/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-077/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-077/terragrunt.hcl b/run-all/project-2/project-2-app1-077/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-077/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-078/main.tf b/run-all/project-2/project-2-app1-078/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-078/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-078/terragrunt.hcl b/run-all/project-2/project-2-app1-078/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-078/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-079/main.tf b/run-all/project-2/project-2-app1-079/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-079/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-079/terragrunt.hcl b/run-all/project-2/project-2-app1-079/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-079/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-080/main.tf b/run-all/project-2/project-2-app1-080/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-080/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-080/terragrunt.hcl b/run-all/project-2/project-2-app1-080/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-080/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-081/main.tf b/run-all/project-2/project-2-app1-081/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-081/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-081/terragrunt.hcl b/run-all/project-2/project-2-app1-081/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-081/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-082/main.tf b/run-all/project-2/project-2-app1-082/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-082/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-082/terragrunt.hcl b/run-all/project-2/project-2-app1-082/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-082/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-083/main.tf b/run-all/project-2/project-2-app1-083/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-083/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-083/terragrunt.hcl b/run-all/project-2/project-2-app1-083/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-083/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-084/main.tf b/run-all/project-2/project-2-app1-084/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-084/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-084/terragrunt.hcl b/run-all/project-2/project-2-app1-084/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-084/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-085/main.tf b/run-all/project-2/project-2-app1-085/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-085/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-085/terragrunt.hcl b/run-all/project-2/project-2-app1-085/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-085/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-086/main.tf b/run-all/project-2/project-2-app1-086/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-086/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-086/terragrunt.hcl b/run-all/project-2/project-2-app1-086/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-086/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-087/main.tf b/run-all/project-2/project-2-app1-087/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-087/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-087/terragrunt.hcl b/run-all/project-2/project-2-app1-087/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-087/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-088/main.tf b/run-all/project-2/project-2-app1-088/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-088/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-088/terragrunt.hcl b/run-all/project-2/project-2-app1-088/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-088/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-089/main.tf b/run-all/project-2/project-2-app1-089/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-089/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-089/terragrunt.hcl b/run-all/project-2/project-2-app1-089/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-089/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-090/main.tf b/run-all/project-2/project-2-app1-090/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-090/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-090/terragrunt.hcl b/run-all/project-2/project-2-app1-090/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-090/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-091/main.tf b/run-all/project-2/project-2-app1-091/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-091/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-091/terragrunt.hcl b/run-all/project-2/project-2-app1-091/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-091/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-092/main.tf b/run-all/project-2/project-2-app1-092/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-092/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-092/terragrunt.hcl b/run-all/project-2/project-2-app1-092/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-092/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-093/main.tf b/run-all/project-2/project-2-app1-093/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-093/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-093/terragrunt.hcl b/run-all/project-2/project-2-app1-093/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-093/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-094/main.tf b/run-all/project-2/project-2-app1-094/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-094/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-094/terragrunt.hcl b/run-all/project-2/project-2-app1-094/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-094/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-095/main.tf b/run-all/project-2/project-2-app1-095/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-095/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-095/terragrunt.hcl b/run-all/project-2/project-2-app1-095/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-095/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-096/main.tf b/run-all/project-2/project-2-app1-096/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-096/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-096/terragrunt.hcl b/run-all/project-2/project-2-app1-096/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-096/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-097/main.tf b/run-all/project-2/project-2-app1-097/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-097/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-097/terragrunt.hcl b/run-all/project-2/project-2-app1-097/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-097/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-098/main.tf b/run-all/project-2/project-2-app1-098/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-098/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-098/terragrunt.hcl b/run-all/project-2/project-2-app1-098/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-098/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-099/main.tf b/run-all/project-2/project-2-app1-099/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-099/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-099/terragrunt.hcl b/run-all/project-2/project-2-app1-099/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-099/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-100/main.tf b/run-all/project-2/project-2-app1-100/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-100/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-100/terragrunt.hcl b/run-all/project-2/project-2-app1-100/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-100/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-101/main.tf b/run-all/project-2/project-2-app1-101/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-101/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-101/terragrunt.hcl b/run-all/project-2/project-2-app1-101/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-101/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-102/main.tf b/run-all/project-2/project-2-app1-102/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-102/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-102/terragrunt.hcl b/run-all/project-2/project-2-app1-102/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-102/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-103/main.tf b/run-all/project-2/project-2-app1-103/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-103/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-103/terragrunt.hcl b/run-all/project-2/project-2-app1-103/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-103/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-104/main.tf b/run-all/project-2/project-2-app1-104/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-104/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-104/terragrunt.hcl b/run-all/project-2/project-2-app1-104/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-104/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-105/main.tf b/run-all/project-2/project-2-app1-105/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-105/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-105/terragrunt.hcl b/run-all/project-2/project-2-app1-105/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-105/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-106/main.tf b/run-all/project-2/project-2-app1-106/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-106/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-106/terragrunt.hcl b/run-all/project-2/project-2-app1-106/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-106/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-107/main.tf b/run-all/project-2/project-2-app1-107/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-107/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-107/terragrunt.hcl b/run-all/project-2/project-2-app1-107/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-107/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-108/main.tf b/run-all/project-2/project-2-app1-108/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-108/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-108/terragrunt.hcl b/run-all/project-2/project-2-app1-108/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-108/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-109/main.tf b/run-all/project-2/project-2-app1-109/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-109/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-109/terragrunt.hcl b/run-all/project-2/project-2-app1-109/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-109/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-110/main.tf b/run-all/project-2/project-2-app1-110/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-110/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-110/terragrunt.hcl b/run-all/project-2/project-2-app1-110/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-110/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-111/main.tf b/run-all/project-2/project-2-app1-111/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-111/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-111/terragrunt.hcl b/run-all/project-2/project-2-app1-111/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-111/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-112/main.tf b/run-all/project-2/project-2-app1-112/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-112/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-112/terragrunt.hcl b/run-all/project-2/project-2-app1-112/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-112/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-113/main.tf b/run-all/project-2/project-2-app1-113/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-113/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-113/terragrunt.hcl b/run-all/project-2/project-2-app1-113/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-113/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-114/main.tf b/run-all/project-2/project-2-app1-114/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-114/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-114/terragrunt.hcl b/run-all/project-2/project-2-app1-114/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-114/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-115/main.tf b/run-all/project-2/project-2-app1-115/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-115/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-115/terragrunt.hcl b/run-all/project-2/project-2-app1-115/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-115/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-116/main.tf b/run-all/project-2/project-2-app1-116/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-116/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-116/terragrunt.hcl b/run-all/project-2/project-2-app1-116/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-116/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-117/main.tf b/run-all/project-2/project-2-app1-117/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-117/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-117/terragrunt.hcl b/run-all/project-2/project-2-app1-117/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-117/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-118/main.tf b/run-all/project-2/project-2-app1-118/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-118/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-118/terragrunt.hcl b/run-all/project-2/project-2-app1-118/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-118/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-119/main.tf b/run-all/project-2/project-2-app1-119/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-119/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-119/terragrunt.hcl b/run-all/project-2/project-2-app1-119/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-119/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-120/main.tf b/run-all/project-2/project-2-app1-120/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-120/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-120/terragrunt.hcl b/run-all/project-2/project-2-app1-120/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-120/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-121/main.tf b/run-all/project-2/project-2-app1-121/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-121/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-121/terragrunt.hcl b/run-all/project-2/project-2-app1-121/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-121/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-122/main.tf b/run-all/project-2/project-2-app1-122/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-122/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-122/terragrunt.hcl b/run-all/project-2/project-2-app1-122/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-122/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-123/main.tf b/run-all/project-2/project-2-app1-123/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-123/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-123/terragrunt.hcl b/run-all/project-2/project-2-app1-123/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-123/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-124/main.tf b/run-all/project-2/project-2-app1-124/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-124/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-124/terragrunt.hcl b/run-all/project-2/project-2-app1-124/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-124/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-125/main.tf b/run-all/project-2/project-2-app1-125/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-125/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-125/terragrunt.hcl b/run-all/project-2/project-2-app1-125/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-125/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-126/main.tf b/run-all/project-2/project-2-app1-126/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-126/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-126/terragrunt.hcl b/run-all/project-2/project-2-app1-126/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-126/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-127/main.tf b/run-all/project-2/project-2-app1-127/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-127/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-127/terragrunt.hcl b/run-all/project-2/project-2-app1-127/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-127/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-128/main.tf b/run-all/project-2/project-2-app1-128/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-128/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-128/terragrunt.hcl b/run-all/project-2/project-2-app1-128/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-128/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-129/main.tf b/run-all/project-2/project-2-app1-129/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-129/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-129/terragrunt.hcl b/run-all/project-2/project-2-app1-129/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-129/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-130/main.tf b/run-all/project-2/project-2-app1-130/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-130/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-130/terragrunt.hcl b/run-all/project-2/project-2-app1-130/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-130/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-131/main.tf b/run-all/project-2/project-2-app1-131/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-131/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-131/terragrunt.hcl b/run-all/project-2/project-2-app1-131/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-131/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-132/main.tf b/run-all/project-2/project-2-app1-132/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-132/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-132/terragrunt.hcl b/run-all/project-2/project-2-app1-132/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-132/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-133/main.tf b/run-all/project-2/project-2-app1-133/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-133/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-133/terragrunt.hcl b/run-all/project-2/project-2-app1-133/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-133/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-134/main.tf b/run-all/project-2/project-2-app1-134/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-134/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-134/terragrunt.hcl b/run-all/project-2/project-2-app1-134/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-134/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-135/main.tf b/run-all/project-2/project-2-app1-135/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-135/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-135/terragrunt.hcl b/run-all/project-2/project-2-app1-135/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-135/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-136/main.tf b/run-all/project-2/project-2-app1-136/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-136/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-136/terragrunt.hcl b/run-all/project-2/project-2-app1-136/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-136/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-137/main.tf b/run-all/project-2/project-2-app1-137/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-137/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-137/terragrunt.hcl b/run-all/project-2/project-2-app1-137/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-137/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-138/main.tf b/run-all/project-2/project-2-app1-138/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-138/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-138/terragrunt.hcl b/run-all/project-2/project-2-app1-138/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-138/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-139/main.tf b/run-all/project-2/project-2-app1-139/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-139/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-139/terragrunt.hcl b/run-all/project-2/project-2-app1-139/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-139/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-140/main.tf b/run-all/project-2/project-2-app1-140/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-140/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-140/terragrunt.hcl b/run-all/project-2/project-2-app1-140/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-140/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-141/main.tf b/run-all/project-2/project-2-app1-141/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-141/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-141/terragrunt.hcl b/run-all/project-2/project-2-app1-141/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-141/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-142/main.tf b/run-all/project-2/project-2-app1-142/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-142/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-142/terragrunt.hcl b/run-all/project-2/project-2-app1-142/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-142/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-143/main.tf b/run-all/project-2/project-2-app1-143/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-143/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-143/terragrunt.hcl b/run-all/project-2/project-2-app1-143/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-143/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-144/main.tf b/run-all/project-2/project-2-app1-144/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-144/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-144/terragrunt.hcl b/run-all/project-2/project-2-app1-144/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-144/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-145/main.tf b/run-all/project-2/project-2-app1-145/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-145/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-145/terragrunt.hcl b/run-all/project-2/project-2-app1-145/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-145/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-146/main.tf b/run-all/project-2/project-2-app1-146/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-146/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-146/terragrunt.hcl b/run-all/project-2/project-2-app1-146/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-146/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-147/main.tf b/run-all/project-2/project-2-app1-147/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-147/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-147/terragrunt.hcl b/run-all/project-2/project-2-app1-147/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-147/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-148/main.tf b/run-all/project-2/project-2-app1-148/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-148/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-148/terragrunt.hcl b/run-all/project-2/project-2-app1-148/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-148/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-149/main.tf b/run-all/project-2/project-2-app1-149/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-149/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-149/terragrunt.hcl b/run-all/project-2/project-2-app1-149/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-149/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-150/main.tf b/run-all/project-2/project-2-app1-150/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-150/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-150/terragrunt.hcl b/run-all/project-2/project-2-app1-150/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-150/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-151/main.tf b/run-all/project-2/project-2-app1-151/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-151/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-151/terragrunt.hcl b/run-all/project-2/project-2-app1-151/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-151/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-152/main.tf b/run-all/project-2/project-2-app1-152/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-152/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-152/terragrunt.hcl b/run-all/project-2/project-2-app1-152/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-152/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-153/main.tf b/run-all/project-2/project-2-app1-153/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-153/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-153/terragrunt.hcl b/run-all/project-2/project-2-app1-153/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-153/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-154/main.tf b/run-all/project-2/project-2-app1-154/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-154/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-154/terragrunt.hcl b/run-all/project-2/project-2-app1-154/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-154/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-155/main.tf b/run-all/project-2/project-2-app1-155/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-155/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-155/terragrunt.hcl b/run-all/project-2/project-2-app1-155/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-155/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-156/main.tf b/run-all/project-2/project-2-app1-156/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-156/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-156/terragrunt.hcl b/run-all/project-2/project-2-app1-156/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-156/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-157/main.tf b/run-all/project-2/project-2-app1-157/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-157/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-157/terragrunt.hcl b/run-all/project-2/project-2-app1-157/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-157/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-158/main.tf b/run-all/project-2/project-2-app1-158/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-158/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-158/terragrunt.hcl b/run-all/project-2/project-2-app1-158/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-158/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-159/main.tf b/run-all/project-2/project-2-app1-159/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-159/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-159/terragrunt.hcl b/run-all/project-2/project-2-app1-159/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-159/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-160/main.tf b/run-all/project-2/project-2-app1-160/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-160/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-160/terragrunt.hcl b/run-all/project-2/project-2-app1-160/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-160/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-161/main.tf b/run-all/project-2/project-2-app1-161/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-161/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-161/terragrunt.hcl b/run-all/project-2/project-2-app1-161/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-161/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-162/main.tf b/run-all/project-2/project-2-app1-162/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-162/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-162/terragrunt.hcl b/run-all/project-2/project-2-app1-162/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-162/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-163/main.tf b/run-all/project-2/project-2-app1-163/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-163/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-163/terragrunt.hcl b/run-all/project-2/project-2-app1-163/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-163/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-164/main.tf b/run-all/project-2/project-2-app1-164/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-164/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-164/terragrunt.hcl b/run-all/project-2/project-2-app1-164/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-164/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-165/main.tf b/run-all/project-2/project-2-app1-165/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-165/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-165/terragrunt.hcl b/run-all/project-2/project-2-app1-165/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-165/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-166/main.tf b/run-all/project-2/project-2-app1-166/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-166/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-166/terragrunt.hcl b/run-all/project-2/project-2-app1-166/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-166/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-167/main.tf b/run-all/project-2/project-2-app1-167/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-167/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-167/terragrunt.hcl b/run-all/project-2/project-2-app1-167/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-167/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-168/main.tf b/run-all/project-2/project-2-app1-168/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-168/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-168/terragrunt.hcl b/run-all/project-2/project-2-app1-168/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-168/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-169/main.tf b/run-all/project-2/project-2-app1-169/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-169/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-169/terragrunt.hcl b/run-all/project-2/project-2-app1-169/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-169/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-170/main.tf b/run-all/project-2/project-2-app1-170/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-170/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-170/terragrunt.hcl b/run-all/project-2/project-2-app1-170/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-170/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-171/main.tf b/run-all/project-2/project-2-app1-171/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-171/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-171/terragrunt.hcl b/run-all/project-2/project-2-app1-171/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-171/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-172/main.tf b/run-all/project-2/project-2-app1-172/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-172/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-172/terragrunt.hcl b/run-all/project-2/project-2-app1-172/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-172/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-173/main.tf b/run-all/project-2/project-2-app1-173/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-173/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-173/terragrunt.hcl b/run-all/project-2/project-2-app1-173/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-173/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-174/main.tf b/run-all/project-2/project-2-app1-174/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-174/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-174/terragrunt.hcl b/run-all/project-2/project-2-app1-174/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-174/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-175/main.tf b/run-all/project-2/project-2-app1-175/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-175/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-175/terragrunt.hcl b/run-all/project-2/project-2-app1-175/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-175/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-176/main.tf b/run-all/project-2/project-2-app1-176/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-176/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-176/terragrunt.hcl b/run-all/project-2/project-2-app1-176/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-176/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-177/main.tf b/run-all/project-2/project-2-app1-177/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-177/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-177/terragrunt.hcl b/run-all/project-2/project-2-app1-177/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-177/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-178/main.tf b/run-all/project-2/project-2-app1-178/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-178/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-178/terragrunt.hcl b/run-all/project-2/project-2-app1-178/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-178/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-179/main.tf b/run-all/project-2/project-2-app1-179/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-179/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-179/terragrunt.hcl b/run-all/project-2/project-2-app1-179/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-179/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-180/main.tf b/run-all/project-2/project-2-app1-180/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-180/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-180/terragrunt.hcl b/run-all/project-2/project-2-app1-180/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-180/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-181/main.tf b/run-all/project-2/project-2-app1-181/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-181/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-181/terragrunt.hcl b/run-all/project-2/project-2-app1-181/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-181/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-182/main.tf b/run-all/project-2/project-2-app1-182/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-182/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-182/terragrunt.hcl b/run-all/project-2/project-2-app1-182/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-182/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-183/main.tf b/run-all/project-2/project-2-app1-183/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-183/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-183/terragrunt.hcl b/run-all/project-2/project-2-app1-183/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-183/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-184/main.tf b/run-all/project-2/project-2-app1-184/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-184/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-184/terragrunt.hcl b/run-all/project-2/project-2-app1-184/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-184/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-185/main.tf b/run-all/project-2/project-2-app1-185/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-185/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-185/terragrunt.hcl b/run-all/project-2/project-2-app1-185/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-185/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-186/main.tf b/run-all/project-2/project-2-app1-186/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-186/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-186/terragrunt.hcl b/run-all/project-2/project-2-app1-186/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-186/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-187/main.tf b/run-all/project-2/project-2-app1-187/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-187/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-187/terragrunt.hcl b/run-all/project-2/project-2-app1-187/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-187/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-188/main.tf b/run-all/project-2/project-2-app1-188/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-188/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-188/terragrunt.hcl b/run-all/project-2/project-2-app1-188/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-188/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-189/main.tf b/run-all/project-2/project-2-app1-189/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-189/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-189/terragrunt.hcl b/run-all/project-2/project-2-app1-189/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-189/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-190/main.tf b/run-all/project-2/project-2-app1-190/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-190/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-190/terragrunt.hcl b/run-all/project-2/project-2-app1-190/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-190/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-191/main.tf b/run-all/project-2/project-2-app1-191/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-191/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-191/terragrunt.hcl b/run-all/project-2/project-2-app1-191/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-191/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-192/main.tf b/run-all/project-2/project-2-app1-192/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-192/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-192/terragrunt.hcl b/run-all/project-2/project-2-app1-192/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-192/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-193/main.tf b/run-all/project-2/project-2-app1-193/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-193/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-193/terragrunt.hcl b/run-all/project-2/project-2-app1-193/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-193/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-194/main.tf b/run-all/project-2/project-2-app1-194/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-194/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-194/terragrunt.hcl b/run-all/project-2/project-2-app1-194/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-194/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-195/main.tf b/run-all/project-2/project-2-app1-195/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-195/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-195/terragrunt.hcl b/run-all/project-2/project-2-app1-195/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-195/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-196/main.tf b/run-all/project-2/project-2-app1-196/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-196/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-196/terragrunt.hcl b/run-all/project-2/project-2-app1-196/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-196/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-197/main.tf b/run-all/project-2/project-2-app1-197/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-197/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-197/terragrunt.hcl b/run-all/project-2/project-2-app1-197/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-197/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-198/main.tf b/run-all/project-2/project-2-app1-198/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-198/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-198/terragrunt.hcl b/run-all/project-2/project-2-app1-198/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-198/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-199/main.tf b/run-all/project-2/project-2-app1-199/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-199/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-199/terragrunt.hcl b/run-all/project-2/project-2-app1-199/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-199/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-200/main.tf b/run-all/project-2/project-2-app1-200/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-200/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-200/terragrunt.hcl b/run-all/project-2/project-2-app1-200/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-200/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-201/main.tf b/run-all/project-2/project-2-app1-201/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-201/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-201/terragrunt.hcl b/run-all/project-2/project-2-app1-201/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-201/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-202/main.tf b/run-all/project-2/project-2-app1-202/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-202/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-202/terragrunt.hcl b/run-all/project-2/project-2-app1-202/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-202/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-203/main.tf b/run-all/project-2/project-2-app1-203/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-203/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-203/terragrunt.hcl b/run-all/project-2/project-2-app1-203/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-203/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-204/main.tf b/run-all/project-2/project-2-app1-204/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-204/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-204/terragrunt.hcl b/run-all/project-2/project-2-app1-204/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-204/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-205/main.tf b/run-all/project-2/project-2-app1-205/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-205/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-205/terragrunt.hcl b/run-all/project-2/project-2-app1-205/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-205/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-206/main.tf b/run-all/project-2/project-2-app1-206/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-206/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-206/terragrunt.hcl b/run-all/project-2/project-2-app1-206/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-206/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-207/main.tf b/run-all/project-2/project-2-app1-207/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-207/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-207/terragrunt.hcl b/run-all/project-2/project-2-app1-207/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-207/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-208/main.tf b/run-all/project-2/project-2-app1-208/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-208/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-208/terragrunt.hcl b/run-all/project-2/project-2-app1-208/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-208/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-209/main.tf b/run-all/project-2/project-2-app1-209/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-209/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-209/terragrunt.hcl b/run-all/project-2/project-2-app1-209/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-209/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-210/main.tf b/run-all/project-2/project-2-app1-210/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-210/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-210/terragrunt.hcl b/run-all/project-2/project-2-app1-210/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-210/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-211/main.tf b/run-all/project-2/project-2-app1-211/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-211/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-211/terragrunt.hcl b/run-all/project-2/project-2-app1-211/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-211/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-212/main.tf b/run-all/project-2/project-2-app1-212/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-212/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-212/terragrunt.hcl b/run-all/project-2/project-2-app1-212/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-212/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-213/main.tf b/run-all/project-2/project-2-app1-213/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-213/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-213/terragrunt.hcl b/run-all/project-2/project-2-app1-213/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-213/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-214/main.tf b/run-all/project-2/project-2-app1-214/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-214/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-214/terragrunt.hcl b/run-all/project-2/project-2-app1-214/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-214/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-215/main.tf b/run-all/project-2/project-2-app1-215/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-215/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-215/terragrunt.hcl b/run-all/project-2/project-2-app1-215/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-215/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-216/main.tf b/run-all/project-2/project-2-app1-216/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-216/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-216/terragrunt.hcl b/run-all/project-2/project-2-app1-216/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-216/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-217/main.tf b/run-all/project-2/project-2-app1-217/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-217/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-217/terragrunt.hcl b/run-all/project-2/project-2-app1-217/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-217/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-218/main.tf b/run-all/project-2/project-2-app1-218/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-218/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-218/terragrunt.hcl b/run-all/project-2/project-2-app1-218/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-218/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-219/main.tf b/run-all/project-2/project-2-app1-219/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-219/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-219/terragrunt.hcl b/run-all/project-2/project-2-app1-219/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-219/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-220/main.tf b/run-all/project-2/project-2-app1-220/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-220/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-220/terragrunt.hcl b/run-all/project-2/project-2-app1-220/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-220/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-221/main.tf b/run-all/project-2/project-2-app1-221/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-221/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-221/terragrunt.hcl b/run-all/project-2/project-2-app1-221/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-221/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-222/main.tf b/run-all/project-2/project-2-app1-222/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-222/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-222/terragrunt.hcl b/run-all/project-2/project-2-app1-222/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-222/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-223/main.tf b/run-all/project-2/project-2-app1-223/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-223/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-223/terragrunt.hcl b/run-all/project-2/project-2-app1-223/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-223/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-224/main.tf b/run-all/project-2/project-2-app1-224/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-224/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-224/terragrunt.hcl b/run-all/project-2/project-2-app1-224/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-224/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-225/main.tf b/run-all/project-2/project-2-app1-225/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-225/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-225/terragrunt.hcl b/run-all/project-2/project-2-app1-225/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-225/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-226/main.tf b/run-all/project-2/project-2-app1-226/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-226/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-226/terragrunt.hcl b/run-all/project-2/project-2-app1-226/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-226/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-227/main.tf b/run-all/project-2/project-2-app1-227/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-227/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-227/terragrunt.hcl b/run-all/project-2/project-2-app1-227/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-227/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-228/main.tf b/run-all/project-2/project-2-app1-228/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-228/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-228/terragrunt.hcl b/run-all/project-2/project-2-app1-228/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-228/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-229/main.tf b/run-all/project-2/project-2-app1-229/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-229/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-229/terragrunt.hcl b/run-all/project-2/project-2-app1-229/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-229/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-230/main.tf b/run-all/project-2/project-2-app1-230/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-230/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-230/terragrunt.hcl b/run-all/project-2/project-2-app1-230/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-230/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-231/main.tf b/run-all/project-2/project-2-app1-231/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-231/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-231/terragrunt.hcl b/run-all/project-2/project-2-app1-231/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-231/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-232/main.tf b/run-all/project-2/project-2-app1-232/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-232/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-232/terragrunt.hcl b/run-all/project-2/project-2-app1-232/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-232/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-233/main.tf b/run-all/project-2/project-2-app1-233/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-233/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-233/terragrunt.hcl b/run-all/project-2/project-2-app1-233/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-233/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-234/main.tf b/run-all/project-2/project-2-app1-234/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-234/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-234/terragrunt.hcl b/run-all/project-2/project-2-app1-234/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-234/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-235/main.tf b/run-all/project-2/project-2-app1-235/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-235/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-235/terragrunt.hcl b/run-all/project-2/project-2-app1-235/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-235/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-236/main.tf b/run-all/project-2/project-2-app1-236/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-236/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-236/terragrunt.hcl b/run-all/project-2/project-2-app1-236/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-236/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-237/main.tf b/run-all/project-2/project-2-app1-237/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-237/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-237/terragrunt.hcl b/run-all/project-2/project-2-app1-237/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-237/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-238/main.tf b/run-all/project-2/project-2-app1-238/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-238/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-238/terragrunt.hcl b/run-all/project-2/project-2-app1-238/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-238/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-239/main.tf b/run-all/project-2/project-2-app1-239/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-239/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-239/terragrunt.hcl b/run-all/project-2/project-2-app1-239/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-239/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-240/main.tf b/run-all/project-2/project-2-app1-240/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-240/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-240/terragrunt.hcl b/run-all/project-2/project-2-app1-240/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-240/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-241/main.tf b/run-all/project-2/project-2-app1-241/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-241/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-241/terragrunt.hcl b/run-all/project-2/project-2-app1-241/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-241/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-242/main.tf b/run-all/project-2/project-2-app1-242/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-242/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-242/terragrunt.hcl b/run-all/project-2/project-2-app1-242/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-242/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-243/main.tf b/run-all/project-2/project-2-app1-243/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-243/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-243/terragrunt.hcl b/run-all/project-2/project-2-app1-243/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-243/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-244/main.tf b/run-all/project-2/project-2-app1-244/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-244/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-244/terragrunt.hcl b/run-all/project-2/project-2-app1-244/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-244/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-245/main.tf b/run-all/project-2/project-2-app1-245/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-245/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-245/terragrunt.hcl b/run-all/project-2/project-2-app1-245/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-245/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-246/main.tf b/run-all/project-2/project-2-app1-246/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-246/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-246/terragrunt.hcl b/run-all/project-2/project-2-app1-246/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-246/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-247/main.tf b/run-all/project-2/project-2-app1-247/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-247/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-247/terragrunt.hcl b/run-all/project-2/project-2-app1-247/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-247/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-248/main.tf b/run-all/project-2/project-2-app1-248/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-248/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-248/terragrunt.hcl b/run-all/project-2/project-2-app1-248/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-248/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-249/main.tf b/run-all/project-2/project-2-app1-249/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-249/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-249/terragrunt.hcl b/run-all/project-2/project-2-app1-249/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-249/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-250/main.tf b/run-all/project-2/project-2-app1-250/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-250/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-250/terragrunt.hcl b/run-all/project-2/project-2-app1-250/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-250/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-251/main.tf b/run-all/project-2/project-2-app1-251/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-251/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-251/terragrunt.hcl b/run-all/project-2/project-2-app1-251/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-251/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-252/main.tf b/run-all/project-2/project-2-app1-252/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-252/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-252/terragrunt.hcl b/run-all/project-2/project-2-app1-252/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-252/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-253/main.tf b/run-all/project-2/project-2-app1-253/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-253/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-253/terragrunt.hcl b/run-all/project-2/project-2-app1-253/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-253/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-254/main.tf b/run-all/project-2/project-2-app1-254/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-254/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-254/terragrunt.hcl b/run-all/project-2/project-2-app1-254/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-254/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-255/main.tf b/run-all/project-2/project-2-app1-255/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-255/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-255/terragrunt.hcl b/run-all/project-2/project-2-app1-255/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-255/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-256/main.tf b/run-all/project-2/project-2-app1-256/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-256/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-256/terragrunt.hcl b/run-all/project-2/project-2-app1-256/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-256/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-257/main.tf b/run-all/project-2/project-2-app1-257/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-257/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-257/terragrunt.hcl b/run-all/project-2/project-2-app1-257/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-257/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-258/main.tf b/run-all/project-2/project-2-app1-258/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-258/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-258/terragrunt.hcl b/run-all/project-2/project-2-app1-258/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-258/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-259/main.tf b/run-all/project-2/project-2-app1-259/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-259/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-259/terragrunt.hcl b/run-all/project-2/project-2-app1-259/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-259/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-260/main.tf b/run-all/project-2/project-2-app1-260/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-260/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-260/terragrunt.hcl b/run-all/project-2/project-2-app1-260/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-260/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-261/main.tf b/run-all/project-2/project-2-app1-261/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-261/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-261/terragrunt.hcl b/run-all/project-2/project-2-app1-261/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-261/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-262/main.tf b/run-all/project-2/project-2-app1-262/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-262/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-262/terragrunt.hcl b/run-all/project-2/project-2-app1-262/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-262/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-263/main.tf b/run-all/project-2/project-2-app1-263/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-263/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-263/terragrunt.hcl b/run-all/project-2/project-2-app1-263/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-263/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-264/main.tf b/run-all/project-2/project-2-app1-264/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-264/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-264/terragrunt.hcl b/run-all/project-2/project-2-app1-264/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-264/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-265/main.tf b/run-all/project-2/project-2-app1-265/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-265/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-265/terragrunt.hcl b/run-all/project-2/project-2-app1-265/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-265/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-266/main.tf b/run-all/project-2/project-2-app1-266/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-266/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-266/terragrunt.hcl b/run-all/project-2/project-2-app1-266/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-266/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-267/main.tf b/run-all/project-2/project-2-app1-267/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-267/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-267/terragrunt.hcl b/run-all/project-2/project-2-app1-267/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-267/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-268/main.tf b/run-all/project-2/project-2-app1-268/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-268/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-268/terragrunt.hcl b/run-all/project-2/project-2-app1-268/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-268/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-269/main.tf b/run-all/project-2/project-2-app1-269/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-269/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-269/terragrunt.hcl b/run-all/project-2/project-2-app1-269/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-269/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-270/main.tf b/run-all/project-2/project-2-app1-270/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-270/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-270/terragrunt.hcl b/run-all/project-2/project-2-app1-270/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-270/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-271/main.tf b/run-all/project-2/project-2-app1-271/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-271/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-271/terragrunt.hcl b/run-all/project-2/project-2-app1-271/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-271/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-272/main.tf b/run-all/project-2/project-2-app1-272/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-272/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-272/terragrunt.hcl b/run-all/project-2/project-2-app1-272/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-272/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-273/main.tf b/run-all/project-2/project-2-app1-273/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-273/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-273/terragrunt.hcl b/run-all/project-2/project-2-app1-273/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-273/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-274/main.tf b/run-all/project-2/project-2-app1-274/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-274/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-274/terragrunt.hcl b/run-all/project-2/project-2-app1-274/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-274/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-275/main.tf b/run-all/project-2/project-2-app1-275/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-275/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-275/terragrunt.hcl b/run-all/project-2/project-2-app1-275/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-275/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-276/main.tf b/run-all/project-2/project-2-app1-276/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-276/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-276/terragrunt.hcl b/run-all/project-2/project-2-app1-276/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-276/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-277/main.tf b/run-all/project-2/project-2-app1-277/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-277/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-277/terragrunt.hcl b/run-all/project-2/project-2-app1-277/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-277/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-278/main.tf b/run-all/project-2/project-2-app1-278/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-278/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-278/terragrunt.hcl b/run-all/project-2/project-2-app1-278/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-278/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-279/main.tf b/run-all/project-2/project-2-app1-279/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-279/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-279/terragrunt.hcl b/run-all/project-2/project-2-app1-279/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-279/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-280/main.tf b/run-all/project-2/project-2-app1-280/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-280/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-280/terragrunt.hcl b/run-all/project-2/project-2-app1-280/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-280/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-281/main.tf b/run-all/project-2/project-2-app1-281/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-281/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-281/terragrunt.hcl b/run-all/project-2/project-2-app1-281/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-281/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-282/main.tf b/run-all/project-2/project-2-app1-282/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-282/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-282/terragrunt.hcl b/run-all/project-2/project-2-app1-282/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-282/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-283/main.tf b/run-all/project-2/project-2-app1-283/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-283/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-283/terragrunt.hcl b/run-all/project-2/project-2-app1-283/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-283/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-284/main.tf b/run-all/project-2/project-2-app1-284/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-284/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-284/terragrunt.hcl b/run-all/project-2/project-2-app1-284/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-284/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-285/main.tf b/run-all/project-2/project-2-app1-285/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-285/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-285/terragrunt.hcl b/run-all/project-2/project-2-app1-285/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-285/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-286/main.tf b/run-all/project-2/project-2-app1-286/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-286/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-286/terragrunt.hcl b/run-all/project-2/project-2-app1-286/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-286/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-287/main.tf b/run-all/project-2/project-2-app1-287/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-287/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-287/terragrunt.hcl b/run-all/project-2/project-2-app1-287/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-287/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-288/main.tf b/run-all/project-2/project-2-app1-288/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-288/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-288/terragrunt.hcl b/run-all/project-2/project-2-app1-288/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-288/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-289/main.tf b/run-all/project-2/project-2-app1-289/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-289/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-289/terragrunt.hcl b/run-all/project-2/project-2-app1-289/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-289/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-290/main.tf b/run-all/project-2/project-2-app1-290/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-290/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-290/terragrunt.hcl b/run-all/project-2/project-2-app1-290/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-290/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-291/main.tf b/run-all/project-2/project-2-app1-291/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-291/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-291/terragrunt.hcl b/run-all/project-2/project-2-app1-291/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-291/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-292/main.tf b/run-all/project-2/project-2-app1-292/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-292/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-292/terragrunt.hcl b/run-all/project-2/project-2-app1-292/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-292/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-293/main.tf b/run-all/project-2/project-2-app1-293/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-293/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-293/terragrunt.hcl b/run-all/project-2/project-2-app1-293/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-293/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-294/main.tf b/run-all/project-2/project-2-app1-294/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-294/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-294/terragrunt.hcl b/run-all/project-2/project-2-app1-294/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-294/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-295/main.tf b/run-all/project-2/project-2-app1-295/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-295/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-295/terragrunt.hcl b/run-all/project-2/project-2-app1-295/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-295/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-296/main.tf b/run-all/project-2/project-2-app1-296/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-296/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-296/terragrunt.hcl b/run-all/project-2/project-2-app1-296/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-296/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-297/main.tf b/run-all/project-2/project-2-app1-297/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-297/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-297/terragrunt.hcl b/run-all/project-2/project-2-app1-297/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-297/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-298/main.tf b/run-all/project-2/project-2-app1-298/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-298/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-298/terragrunt.hcl b/run-all/project-2/project-2-app1-298/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-298/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-299/main.tf b/run-all/project-2/project-2-app1-299/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-299/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-299/terragrunt.hcl b/run-all/project-2/project-2-app1-299/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-299/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-300/main.tf b/run-all/project-2/project-2-app1-300/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-300/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-300/terragrunt.hcl b/run-all/project-2/project-2-app1-300/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-300/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-301/main.tf b/run-all/project-2/project-2-app1-301/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-301/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-301/terragrunt.hcl b/run-all/project-2/project-2-app1-301/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-301/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-302/main.tf b/run-all/project-2/project-2-app1-302/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-302/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-302/terragrunt.hcl b/run-all/project-2/project-2-app1-302/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-302/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-303/main.tf b/run-all/project-2/project-2-app1-303/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-303/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-303/terragrunt.hcl b/run-all/project-2/project-2-app1-303/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-303/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-304/main.tf b/run-all/project-2/project-2-app1-304/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-304/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-304/terragrunt.hcl b/run-all/project-2/project-2-app1-304/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-304/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-305/main.tf b/run-all/project-2/project-2-app1-305/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-305/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-305/terragrunt.hcl b/run-all/project-2/project-2-app1-305/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-305/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-306/main.tf b/run-all/project-2/project-2-app1-306/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-306/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-306/terragrunt.hcl b/run-all/project-2/project-2-app1-306/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-306/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-307/main.tf b/run-all/project-2/project-2-app1-307/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-307/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-307/terragrunt.hcl b/run-all/project-2/project-2-app1-307/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-307/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-308/main.tf b/run-all/project-2/project-2-app1-308/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-308/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-308/terragrunt.hcl b/run-all/project-2/project-2-app1-308/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-308/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-309/main.tf b/run-all/project-2/project-2-app1-309/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-309/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-309/terragrunt.hcl b/run-all/project-2/project-2-app1-309/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-309/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-310/main.tf b/run-all/project-2/project-2-app1-310/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-310/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-310/terragrunt.hcl b/run-all/project-2/project-2-app1-310/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-310/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-311/main.tf b/run-all/project-2/project-2-app1-311/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-311/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-311/terragrunt.hcl b/run-all/project-2/project-2-app1-311/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-311/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-312/main.tf b/run-all/project-2/project-2-app1-312/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-312/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-312/terragrunt.hcl b/run-all/project-2/project-2-app1-312/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-312/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-313/main.tf b/run-all/project-2/project-2-app1-313/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-313/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-313/terragrunt.hcl b/run-all/project-2/project-2-app1-313/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-313/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-314/main.tf b/run-all/project-2/project-2-app1-314/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-314/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-314/terragrunt.hcl b/run-all/project-2/project-2-app1-314/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-314/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-315/main.tf b/run-all/project-2/project-2-app1-315/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-315/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-315/terragrunt.hcl b/run-all/project-2/project-2-app1-315/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-315/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-316/main.tf b/run-all/project-2/project-2-app1-316/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-316/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-316/terragrunt.hcl b/run-all/project-2/project-2-app1-316/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-316/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-317/main.tf b/run-all/project-2/project-2-app1-317/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-317/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-317/terragrunt.hcl b/run-all/project-2/project-2-app1-317/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-317/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-318/main.tf b/run-all/project-2/project-2-app1-318/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-318/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-318/terragrunt.hcl b/run-all/project-2/project-2-app1-318/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-318/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-319/main.tf b/run-all/project-2/project-2-app1-319/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-319/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-319/terragrunt.hcl b/run-all/project-2/project-2-app1-319/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-319/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-320/main.tf b/run-all/project-2/project-2-app1-320/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-320/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-320/terragrunt.hcl b/run-all/project-2/project-2-app1-320/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-320/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-321/main.tf b/run-all/project-2/project-2-app1-321/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-321/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-321/terragrunt.hcl b/run-all/project-2/project-2-app1-321/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-321/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-322/main.tf b/run-all/project-2/project-2-app1-322/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-322/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-322/terragrunt.hcl b/run-all/project-2/project-2-app1-322/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-322/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-323/main.tf b/run-all/project-2/project-2-app1-323/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-323/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-323/terragrunt.hcl b/run-all/project-2/project-2-app1-323/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-323/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-324/main.tf b/run-all/project-2/project-2-app1-324/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-324/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-324/terragrunt.hcl b/run-all/project-2/project-2-app1-324/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-324/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-325/main.tf b/run-all/project-2/project-2-app1-325/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-325/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-325/terragrunt.hcl b/run-all/project-2/project-2-app1-325/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-325/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-326/main.tf b/run-all/project-2/project-2-app1-326/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-326/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-326/terragrunt.hcl b/run-all/project-2/project-2-app1-326/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-326/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-327/main.tf b/run-all/project-2/project-2-app1-327/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-327/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-327/terragrunt.hcl b/run-all/project-2/project-2-app1-327/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-327/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-328/main.tf b/run-all/project-2/project-2-app1-328/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-328/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-328/terragrunt.hcl b/run-all/project-2/project-2-app1-328/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-328/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-329/main.tf b/run-all/project-2/project-2-app1-329/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-329/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-329/terragrunt.hcl b/run-all/project-2/project-2-app1-329/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-329/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-330/main.tf b/run-all/project-2/project-2-app1-330/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-330/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-330/terragrunt.hcl b/run-all/project-2/project-2-app1-330/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-330/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-331/main.tf b/run-all/project-2/project-2-app1-331/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-331/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-331/terragrunt.hcl b/run-all/project-2/project-2-app1-331/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-331/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-332/main.tf b/run-all/project-2/project-2-app1-332/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-332/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-332/terragrunt.hcl b/run-all/project-2/project-2-app1-332/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-332/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-333/main.tf b/run-all/project-2/project-2-app1-333/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-333/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-333/terragrunt.hcl b/run-all/project-2/project-2-app1-333/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-333/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-334/main.tf b/run-all/project-2/project-2-app1-334/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-334/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-334/terragrunt.hcl b/run-all/project-2/project-2-app1-334/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-334/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-335/main.tf b/run-all/project-2/project-2-app1-335/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-335/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-335/terragrunt.hcl b/run-all/project-2/project-2-app1-335/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-335/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-336/main.tf b/run-all/project-2/project-2-app1-336/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-336/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-336/terragrunt.hcl b/run-all/project-2/project-2-app1-336/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-336/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-337/main.tf b/run-all/project-2/project-2-app1-337/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-337/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-337/terragrunt.hcl b/run-all/project-2/project-2-app1-337/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-337/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-338/main.tf b/run-all/project-2/project-2-app1-338/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-338/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-338/terragrunt.hcl b/run-all/project-2/project-2-app1-338/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-338/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-339/main.tf b/run-all/project-2/project-2-app1-339/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-339/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-339/terragrunt.hcl b/run-all/project-2/project-2-app1-339/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-339/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-340/main.tf b/run-all/project-2/project-2-app1-340/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-340/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-340/terragrunt.hcl b/run-all/project-2/project-2-app1-340/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-340/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-341/main.tf b/run-all/project-2/project-2-app1-341/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-341/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-341/terragrunt.hcl b/run-all/project-2/project-2-app1-341/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-341/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-342/main.tf b/run-all/project-2/project-2-app1-342/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-342/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-342/terragrunt.hcl b/run-all/project-2/project-2-app1-342/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-342/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-343/main.tf b/run-all/project-2/project-2-app1-343/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-343/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-343/terragrunt.hcl b/run-all/project-2/project-2-app1-343/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-343/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-344/main.tf b/run-all/project-2/project-2-app1-344/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-344/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-344/terragrunt.hcl b/run-all/project-2/project-2-app1-344/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-344/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-345/main.tf b/run-all/project-2/project-2-app1-345/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-345/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-345/terragrunt.hcl b/run-all/project-2/project-2-app1-345/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-345/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-346/main.tf b/run-all/project-2/project-2-app1-346/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-346/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-346/terragrunt.hcl b/run-all/project-2/project-2-app1-346/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-346/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-347/main.tf b/run-all/project-2/project-2-app1-347/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-347/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-347/terragrunt.hcl b/run-all/project-2/project-2-app1-347/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-347/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-348/main.tf b/run-all/project-2/project-2-app1-348/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-348/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-348/terragrunt.hcl b/run-all/project-2/project-2-app1-348/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-348/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-349/main.tf b/run-all/project-2/project-2-app1-349/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-349/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-349/terragrunt.hcl b/run-all/project-2/project-2-app1-349/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-349/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-350/main.tf b/run-all/project-2/project-2-app1-350/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-350/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-350/terragrunt.hcl b/run-all/project-2/project-2-app1-350/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-350/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-351/main.tf b/run-all/project-2/project-2-app1-351/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-351/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-351/terragrunt.hcl b/run-all/project-2/project-2-app1-351/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-351/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-352/main.tf b/run-all/project-2/project-2-app1-352/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-352/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-352/terragrunt.hcl b/run-all/project-2/project-2-app1-352/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-352/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-353/main.tf b/run-all/project-2/project-2-app1-353/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-353/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-353/terragrunt.hcl b/run-all/project-2/project-2-app1-353/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-353/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-354/main.tf b/run-all/project-2/project-2-app1-354/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-354/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-354/terragrunt.hcl b/run-all/project-2/project-2-app1-354/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-354/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-355/main.tf b/run-all/project-2/project-2-app1-355/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-355/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-355/terragrunt.hcl b/run-all/project-2/project-2-app1-355/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-355/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-356/main.tf b/run-all/project-2/project-2-app1-356/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-356/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-356/terragrunt.hcl b/run-all/project-2/project-2-app1-356/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-356/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-357/main.tf b/run-all/project-2/project-2-app1-357/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-357/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-357/terragrunt.hcl b/run-all/project-2/project-2-app1-357/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-357/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-358/main.tf b/run-all/project-2/project-2-app1-358/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-358/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-358/terragrunt.hcl b/run-all/project-2/project-2-app1-358/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-358/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-359/main.tf b/run-all/project-2/project-2-app1-359/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-359/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-359/terragrunt.hcl b/run-all/project-2/project-2-app1-359/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-359/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-360/main.tf b/run-all/project-2/project-2-app1-360/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-360/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-360/terragrunt.hcl b/run-all/project-2/project-2-app1-360/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-360/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-361/main.tf b/run-all/project-2/project-2-app1-361/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-361/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-361/terragrunt.hcl b/run-all/project-2/project-2-app1-361/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-361/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-362/main.tf b/run-all/project-2/project-2-app1-362/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-362/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-362/terragrunt.hcl b/run-all/project-2/project-2-app1-362/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-362/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-363/main.tf b/run-all/project-2/project-2-app1-363/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-363/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-363/terragrunt.hcl b/run-all/project-2/project-2-app1-363/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-363/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-364/main.tf b/run-all/project-2/project-2-app1-364/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-364/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-364/terragrunt.hcl b/run-all/project-2/project-2-app1-364/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-364/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-365/main.tf b/run-all/project-2/project-2-app1-365/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-365/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-365/terragrunt.hcl b/run-all/project-2/project-2-app1-365/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-365/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-366/main.tf b/run-all/project-2/project-2-app1-366/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-366/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-366/terragrunt.hcl b/run-all/project-2/project-2-app1-366/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-366/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-367/main.tf b/run-all/project-2/project-2-app1-367/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-367/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-367/terragrunt.hcl b/run-all/project-2/project-2-app1-367/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-367/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-368/main.tf b/run-all/project-2/project-2-app1-368/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-368/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-368/terragrunt.hcl b/run-all/project-2/project-2-app1-368/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-368/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-369/main.tf b/run-all/project-2/project-2-app1-369/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-369/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-369/terragrunt.hcl b/run-all/project-2/project-2-app1-369/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-369/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-370/main.tf b/run-all/project-2/project-2-app1-370/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-370/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-370/terragrunt.hcl b/run-all/project-2/project-2-app1-370/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-370/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-371/main.tf b/run-all/project-2/project-2-app1-371/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-371/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-371/terragrunt.hcl b/run-all/project-2/project-2-app1-371/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-371/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-372/main.tf b/run-all/project-2/project-2-app1-372/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-372/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-372/terragrunt.hcl b/run-all/project-2/project-2-app1-372/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-372/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-373/main.tf b/run-all/project-2/project-2-app1-373/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-373/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-373/terragrunt.hcl b/run-all/project-2/project-2-app1-373/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-373/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-374/main.tf b/run-all/project-2/project-2-app1-374/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-374/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-374/terragrunt.hcl b/run-all/project-2/project-2-app1-374/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-374/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-375/main.tf b/run-all/project-2/project-2-app1-375/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-375/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-375/terragrunt.hcl b/run-all/project-2/project-2-app1-375/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-375/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-376/main.tf b/run-all/project-2/project-2-app1-376/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-376/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-376/terragrunt.hcl b/run-all/project-2/project-2-app1-376/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-376/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-377/main.tf b/run-all/project-2/project-2-app1-377/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-377/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-377/terragrunt.hcl b/run-all/project-2/project-2-app1-377/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-377/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-378/main.tf b/run-all/project-2/project-2-app1-378/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-378/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-378/terragrunt.hcl b/run-all/project-2/project-2-app1-378/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-378/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-379/main.tf b/run-all/project-2/project-2-app1-379/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-379/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-379/terragrunt.hcl b/run-all/project-2/project-2-app1-379/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-379/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-380/main.tf b/run-all/project-2/project-2-app1-380/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-380/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-380/terragrunt.hcl b/run-all/project-2/project-2-app1-380/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-380/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-381/main.tf b/run-all/project-2/project-2-app1-381/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-381/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-381/terragrunt.hcl b/run-all/project-2/project-2-app1-381/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-381/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-382/main.tf b/run-all/project-2/project-2-app1-382/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-382/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-382/terragrunt.hcl b/run-all/project-2/project-2-app1-382/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-382/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-383/main.tf b/run-all/project-2/project-2-app1-383/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-383/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-383/terragrunt.hcl b/run-all/project-2/project-2-app1-383/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-383/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-384/main.tf b/run-all/project-2/project-2-app1-384/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-384/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-384/terragrunt.hcl b/run-all/project-2/project-2-app1-384/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-384/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-385/main.tf b/run-all/project-2/project-2-app1-385/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-385/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-385/terragrunt.hcl b/run-all/project-2/project-2-app1-385/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-385/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-386/main.tf b/run-all/project-2/project-2-app1-386/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-386/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-386/terragrunt.hcl b/run-all/project-2/project-2-app1-386/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-386/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-387/main.tf b/run-all/project-2/project-2-app1-387/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-387/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-387/terragrunt.hcl b/run-all/project-2/project-2-app1-387/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-387/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-388/main.tf b/run-all/project-2/project-2-app1-388/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-388/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-388/terragrunt.hcl b/run-all/project-2/project-2-app1-388/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-388/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-389/main.tf b/run-all/project-2/project-2-app1-389/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-389/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-389/terragrunt.hcl b/run-all/project-2/project-2-app1-389/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-389/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-390/main.tf b/run-all/project-2/project-2-app1-390/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-390/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-390/terragrunt.hcl b/run-all/project-2/project-2-app1-390/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-390/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-391/main.tf b/run-all/project-2/project-2-app1-391/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-391/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-391/terragrunt.hcl b/run-all/project-2/project-2-app1-391/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-391/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-392/main.tf b/run-all/project-2/project-2-app1-392/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-392/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-392/terragrunt.hcl b/run-all/project-2/project-2-app1-392/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-392/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-393/main.tf b/run-all/project-2/project-2-app1-393/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-393/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-393/terragrunt.hcl b/run-all/project-2/project-2-app1-393/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-393/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-394/main.tf b/run-all/project-2/project-2-app1-394/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-394/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-394/terragrunt.hcl b/run-all/project-2/project-2-app1-394/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-394/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-395/main.tf b/run-all/project-2/project-2-app1-395/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-395/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-395/terragrunt.hcl b/run-all/project-2/project-2-app1-395/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-395/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-396/main.tf b/run-all/project-2/project-2-app1-396/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-396/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-396/terragrunt.hcl b/run-all/project-2/project-2-app1-396/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-396/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-397/main.tf b/run-all/project-2/project-2-app1-397/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-397/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-397/terragrunt.hcl b/run-all/project-2/project-2-app1-397/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-397/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-398/main.tf b/run-all/project-2/project-2-app1-398/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-398/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-398/terragrunt.hcl b/run-all/project-2/project-2-app1-398/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-398/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-399/main.tf b/run-all/project-2/project-2-app1-399/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-399/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-399/terragrunt.hcl b/run-all/project-2/project-2-app1-399/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-399/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} diff --git a/run-all/project-2/project-2-app1-400/main.tf b/run-all/project-2/project-2-app1-400/main.tf new file mode 100644 index 0000000..cdeb8cc --- /dev/null +++ b/run-all/project-2/project-2-app1-400/main.tf @@ -0,0 +1,4 @@ +resource "local_file" "file" { + content = " file" + filename = "${path.module}/cluster_name.txt" +} diff --git a/run-all/project-2/project-2-app1-400/terragrunt.hcl b/run-all/project-2/project-2-app1-400/terragrunt.hcl new file mode 100644 index 0000000..91a5dda --- /dev/null +++ b/run-all/project-2/project-2-app1-400/terragrunt.hcl @@ -0,0 +1,12 @@ +locals { + repo_root = get_path_to_repo_root() + log_print0 = run_cmd("echo", "log_print 2 0") + log_print = run_cmd("echo", get_path_to_repo_root()) + log_print9 = run_cmd("echo", "log_print 2 0") +} + +inputs = { + str1 = "46521694" + str2 = 123 + +} From 4e9cab344fb14df5e8fd41acab9c768a7b33e255 Mon Sep 17 00:00:00 2001 From: Denis O Date: Thu, 23 May 2024 22:09:56 +0100 Subject: [PATCH 11/11] cleanup --- run-all/project-2/project-2-app1-051/main.tf | 4 ---- run-all/project-2/project-2-app1-051/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-052/main.tf | 4 ---- run-all/project-2/project-2-app1-052/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-053/main.tf | 4 ---- run-all/project-2/project-2-app1-053/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-054/main.tf | 4 ---- run-all/project-2/project-2-app1-054/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-055/main.tf | 4 ---- run-all/project-2/project-2-app1-055/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-056/main.tf | 4 ---- run-all/project-2/project-2-app1-056/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-057/main.tf | 4 ---- run-all/project-2/project-2-app1-057/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-058/main.tf | 4 ---- run-all/project-2/project-2-app1-058/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-059/main.tf | 4 ---- run-all/project-2/project-2-app1-059/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-060/main.tf | 4 ---- run-all/project-2/project-2-app1-060/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-061/main.tf | 4 ---- run-all/project-2/project-2-app1-061/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-062/main.tf | 4 ---- run-all/project-2/project-2-app1-062/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-063/main.tf | 4 ---- run-all/project-2/project-2-app1-063/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-064/main.tf | 4 ---- run-all/project-2/project-2-app1-064/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-065/main.tf | 4 ---- run-all/project-2/project-2-app1-065/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-066/main.tf | 4 ---- run-all/project-2/project-2-app1-066/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-067/main.tf | 4 ---- run-all/project-2/project-2-app1-067/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-068/main.tf | 4 ---- run-all/project-2/project-2-app1-068/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-069/main.tf | 4 ---- run-all/project-2/project-2-app1-069/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-070/main.tf | 4 ---- run-all/project-2/project-2-app1-070/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-071/main.tf | 4 ---- run-all/project-2/project-2-app1-071/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-072/main.tf | 4 ---- run-all/project-2/project-2-app1-072/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-073/main.tf | 4 ---- run-all/project-2/project-2-app1-073/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-074/main.tf | 4 ---- run-all/project-2/project-2-app1-074/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-075/main.tf | 4 ---- run-all/project-2/project-2-app1-075/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-076/main.tf | 4 ---- run-all/project-2/project-2-app1-076/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-077/main.tf | 4 ---- run-all/project-2/project-2-app1-077/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-078/main.tf | 4 ---- run-all/project-2/project-2-app1-078/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-079/main.tf | 4 ---- run-all/project-2/project-2-app1-079/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-080/main.tf | 4 ---- run-all/project-2/project-2-app1-080/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-081/main.tf | 4 ---- run-all/project-2/project-2-app1-081/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-082/main.tf | 4 ---- run-all/project-2/project-2-app1-082/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-083/main.tf | 4 ---- run-all/project-2/project-2-app1-083/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-084/main.tf | 4 ---- run-all/project-2/project-2-app1-084/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-085/main.tf | 4 ---- run-all/project-2/project-2-app1-085/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-086/main.tf | 4 ---- run-all/project-2/project-2-app1-086/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-087/main.tf | 4 ---- run-all/project-2/project-2-app1-087/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-088/main.tf | 4 ---- run-all/project-2/project-2-app1-088/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-089/main.tf | 4 ---- run-all/project-2/project-2-app1-089/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-090/main.tf | 4 ---- run-all/project-2/project-2-app1-090/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-091/main.tf | 4 ---- run-all/project-2/project-2-app1-091/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-092/main.tf | 4 ---- run-all/project-2/project-2-app1-092/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-093/main.tf | 4 ---- run-all/project-2/project-2-app1-093/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-094/main.tf | 4 ---- run-all/project-2/project-2-app1-094/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-095/main.tf | 4 ---- run-all/project-2/project-2-app1-095/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-096/main.tf | 4 ---- run-all/project-2/project-2-app1-096/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-097/main.tf | 4 ---- run-all/project-2/project-2-app1-097/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-098/main.tf | 4 ---- run-all/project-2/project-2-app1-098/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-099/main.tf | 4 ---- run-all/project-2/project-2-app1-099/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-100/main.tf | 4 ---- run-all/project-2/project-2-app1-100/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-101/main.tf | 4 ---- run-all/project-2/project-2-app1-101/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-102/main.tf | 4 ---- run-all/project-2/project-2-app1-102/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-103/main.tf | 4 ---- run-all/project-2/project-2-app1-103/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-104/main.tf | 4 ---- run-all/project-2/project-2-app1-104/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-105/main.tf | 4 ---- run-all/project-2/project-2-app1-105/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-106/main.tf | 4 ---- run-all/project-2/project-2-app1-106/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-107/main.tf | 4 ---- run-all/project-2/project-2-app1-107/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-108/main.tf | 4 ---- run-all/project-2/project-2-app1-108/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-109/main.tf | 4 ---- run-all/project-2/project-2-app1-109/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-110/main.tf | 4 ---- run-all/project-2/project-2-app1-110/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-111/main.tf | 4 ---- run-all/project-2/project-2-app1-111/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-112/main.tf | 4 ---- run-all/project-2/project-2-app1-112/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-113/main.tf | 4 ---- run-all/project-2/project-2-app1-113/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-114/main.tf | 4 ---- run-all/project-2/project-2-app1-114/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-115/main.tf | 4 ---- run-all/project-2/project-2-app1-115/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-116/main.tf | 4 ---- run-all/project-2/project-2-app1-116/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-117/main.tf | 4 ---- run-all/project-2/project-2-app1-117/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-118/main.tf | 4 ---- run-all/project-2/project-2-app1-118/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-119/main.tf | 4 ---- run-all/project-2/project-2-app1-119/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-120/main.tf | 4 ---- run-all/project-2/project-2-app1-120/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-121/main.tf | 4 ---- run-all/project-2/project-2-app1-121/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-122/main.tf | 4 ---- run-all/project-2/project-2-app1-122/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-123/main.tf | 4 ---- run-all/project-2/project-2-app1-123/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-124/main.tf | 4 ---- run-all/project-2/project-2-app1-124/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-125/main.tf | 4 ---- run-all/project-2/project-2-app1-125/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-126/main.tf | 4 ---- run-all/project-2/project-2-app1-126/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-127/main.tf | 4 ---- run-all/project-2/project-2-app1-127/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-128/main.tf | 4 ---- run-all/project-2/project-2-app1-128/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-129/main.tf | 4 ---- run-all/project-2/project-2-app1-129/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-130/main.tf | 4 ---- run-all/project-2/project-2-app1-130/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-131/main.tf | 4 ---- run-all/project-2/project-2-app1-131/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-132/main.tf | 4 ---- run-all/project-2/project-2-app1-132/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-133/main.tf | 4 ---- run-all/project-2/project-2-app1-133/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-134/main.tf | 4 ---- run-all/project-2/project-2-app1-134/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-135/main.tf | 4 ---- run-all/project-2/project-2-app1-135/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-136/main.tf | 4 ---- run-all/project-2/project-2-app1-136/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-137/main.tf | 4 ---- run-all/project-2/project-2-app1-137/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-138/main.tf | 4 ---- run-all/project-2/project-2-app1-138/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-139/main.tf | 4 ---- run-all/project-2/project-2-app1-139/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-140/main.tf | 4 ---- run-all/project-2/project-2-app1-140/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-141/main.tf | 4 ---- run-all/project-2/project-2-app1-141/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-142/main.tf | 4 ---- run-all/project-2/project-2-app1-142/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-143/main.tf | 4 ---- run-all/project-2/project-2-app1-143/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-144/main.tf | 4 ---- run-all/project-2/project-2-app1-144/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-145/main.tf | 4 ---- run-all/project-2/project-2-app1-145/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-146/main.tf | 4 ---- run-all/project-2/project-2-app1-146/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-147/main.tf | 4 ---- run-all/project-2/project-2-app1-147/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-148/main.tf | 4 ---- run-all/project-2/project-2-app1-148/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-149/main.tf | 4 ---- run-all/project-2/project-2-app1-149/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-150/main.tf | 4 ---- run-all/project-2/project-2-app1-150/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-151/main.tf | 4 ---- run-all/project-2/project-2-app1-151/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-152/main.tf | 4 ---- run-all/project-2/project-2-app1-152/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-153/main.tf | 4 ---- run-all/project-2/project-2-app1-153/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-154/main.tf | 4 ---- run-all/project-2/project-2-app1-154/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-155/main.tf | 4 ---- run-all/project-2/project-2-app1-155/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-156/main.tf | 4 ---- run-all/project-2/project-2-app1-156/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-157/main.tf | 4 ---- run-all/project-2/project-2-app1-157/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-158/main.tf | 4 ---- run-all/project-2/project-2-app1-158/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-159/main.tf | 4 ---- run-all/project-2/project-2-app1-159/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-160/main.tf | 4 ---- run-all/project-2/project-2-app1-160/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-161/main.tf | 4 ---- run-all/project-2/project-2-app1-161/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-162/main.tf | 4 ---- run-all/project-2/project-2-app1-162/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-163/main.tf | 4 ---- run-all/project-2/project-2-app1-163/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-164/main.tf | 4 ---- run-all/project-2/project-2-app1-164/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-165/main.tf | 4 ---- run-all/project-2/project-2-app1-165/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-166/main.tf | 4 ---- run-all/project-2/project-2-app1-166/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-167/main.tf | 4 ---- run-all/project-2/project-2-app1-167/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-168/main.tf | 4 ---- run-all/project-2/project-2-app1-168/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-169/main.tf | 4 ---- run-all/project-2/project-2-app1-169/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-170/main.tf | 4 ---- run-all/project-2/project-2-app1-170/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-171/main.tf | 4 ---- run-all/project-2/project-2-app1-171/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-172/main.tf | 4 ---- run-all/project-2/project-2-app1-172/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-173/main.tf | 4 ---- run-all/project-2/project-2-app1-173/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-174/main.tf | 4 ---- run-all/project-2/project-2-app1-174/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-175/main.tf | 4 ---- run-all/project-2/project-2-app1-175/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-176/main.tf | 4 ---- run-all/project-2/project-2-app1-176/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-177/main.tf | 4 ---- run-all/project-2/project-2-app1-177/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-178/main.tf | 4 ---- run-all/project-2/project-2-app1-178/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-179/main.tf | 4 ---- run-all/project-2/project-2-app1-179/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-180/main.tf | 4 ---- run-all/project-2/project-2-app1-180/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-181/main.tf | 4 ---- run-all/project-2/project-2-app1-181/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-182/main.tf | 4 ---- run-all/project-2/project-2-app1-182/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-183/main.tf | 4 ---- run-all/project-2/project-2-app1-183/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-184/main.tf | 4 ---- run-all/project-2/project-2-app1-184/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-185/main.tf | 4 ---- run-all/project-2/project-2-app1-185/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-186/main.tf | 4 ---- run-all/project-2/project-2-app1-186/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-187/main.tf | 4 ---- run-all/project-2/project-2-app1-187/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-188/main.tf | 4 ---- run-all/project-2/project-2-app1-188/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-189/main.tf | 4 ---- run-all/project-2/project-2-app1-189/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-190/main.tf | 4 ---- run-all/project-2/project-2-app1-190/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-191/main.tf | 4 ---- run-all/project-2/project-2-app1-191/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-192/main.tf | 4 ---- run-all/project-2/project-2-app1-192/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-193/main.tf | 4 ---- run-all/project-2/project-2-app1-193/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-194/main.tf | 4 ---- run-all/project-2/project-2-app1-194/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-195/main.tf | 4 ---- run-all/project-2/project-2-app1-195/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-196/main.tf | 4 ---- run-all/project-2/project-2-app1-196/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-197/main.tf | 4 ---- run-all/project-2/project-2-app1-197/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-198/main.tf | 4 ---- run-all/project-2/project-2-app1-198/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-199/main.tf | 4 ---- run-all/project-2/project-2-app1-199/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-200/main.tf | 4 ---- run-all/project-2/project-2-app1-200/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-201/main.tf | 4 ---- run-all/project-2/project-2-app1-201/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-202/main.tf | 4 ---- run-all/project-2/project-2-app1-202/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-203/main.tf | 4 ---- run-all/project-2/project-2-app1-203/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-204/main.tf | 4 ---- run-all/project-2/project-2-app1-204/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-205/main.tf | 4 ---- run-all/project-2/project-2-app1-205/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-206/main.tf | 4 ---- run-all/project-2/project-2-app1-206/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-207/main.tf | 4 ---- run-all/project-2/project-2-app1-207/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-208/main.tf | 4 ---- run-all/project-2/project-2-app1-208/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-209/main.tf | 4 ---- run-all/project-2/project-2-app1-209/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-210/main.tf | 4 ---- run-all/project-2/project-2-app1-210/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-211/main.tf | 4 ---- run-all/project-2/project-2-app1-211/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-212/main.tf | 4 ---- run-all/project-2/project-2-app1-212/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-213/main.tf | 4 ---- run-all/project-2/project-2-app1-213/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-214/main.tf | 4 ---- run-all/project-2/project-2-app1-214/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-215/main.tf | 4 ---- run-all/project-2/project-2-app1-215/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-216/main.tf | 4 ---- run-all/project-2/project-2-app1-216/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-217/main.tf | 4 ---- run-all/project-2/project-2-app1-217/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-218/main.tf | 4 ---- run-all/project-2/project-2-app1-218/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-219/main.tf | 4 ---- run-all/project-2/project-2-app1-219/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-220/main.tf | 4 ---- run-all/project-2/project-2-app1-220/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-221/main.tf | 4 ---- run-all/project-2/project-2-app1-221/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-222/main.tf | 4 ---- run-all/project-2/project-2-app1-222/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-223/main.tf | 4 ---- run-all/project-2/project-2-app1-223/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-224/main.tf | 4 ---- run-all/project-2/project-2-app1-224/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-225/main.tf | 4 ---- run-all/project-2/project-2-app1-225/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-226/main.tf | 4 ---- run-all/project-2/project-2-app1-226/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-227/main.tf | 4 ---- run-all/project-2/project-2-app1-227/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-228/main.tf | 4 ---- run-all/project-2/project-2-app1-228/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-229/main.tf | 4 ---- run-all/project-2/project-2-app1-229/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-230/main.tf | 4 ---- run-all/project-2/project-2-app1-230/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-231/main.tf | 4 ---- run-all/project-2/project-2-app1-231/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-232/main.tf | 4 ---- run-all/project-2/project-2-app1-232/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-233/main.tf | 4 ---- run-all/project-2/project-2-app1-233/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-234/main.tf | 4 ---- run-all/project-2/project-2-app1-234/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-235/main.tf | 4 ---- run-all/project-2/project-2-app1-235/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-236/main.tf | 4 ---- run-all/project-2/project-2-app1-236/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-237/main.tf | 4 ---- run-all/project-2/project-2-app1-237/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-238/main.tf | 4 ---- run-all/project-2/project-2-app1-238/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-239/main.tf | 4 ---- run-all/project-2/project-2-app1-239/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-240/main.tf | 4 ---- run-all/project-2/project-2-app1-240/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-241/main.tf | 4 ---- run-all/project-2/project-2-app1-241/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-242/main.tf | 4 ---- run-all/project-2/project-2-app1-242/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-243/main.tf | 4 ---- run-all/project-2/project-2-app1-243/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-244/main.tf | 4 ---- run-all/project-2/project-2-app1-244/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-245/main.tf | 4 ---- run-all/project-2/project-2-app1-245/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-246/main.tf | 4 ---- run-all/project-2/project-2-app1-246/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-247/main.tf | 4 ---- run-all/project-2/project-2-app1-247/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-248/main.tf | 4 ---- run-all/project-2/project-2-app1-248/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-249/main.tf | 4 ---- run-all/project-2/project-2-app1-249/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-250/main.tf | 4 ---- run-all/project-2/project-2-app1-250/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-251/main.tf | 4 ---- run-all/project-2/project-2-app1-251/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-252/main.tf | 4 ---- run-all/project-2/project-2-app1-252/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-253/main.tf | 4 ---- run-all/project-2/project-2-app1-253/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-254/main.tf | 4 ---- run-all/project-2/project-2-app1-254/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-255/main.tf | 4 ---- run-all/project-2/project-2-app1-255/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-256/main.tf | 4 ---- run-all/project-2/project-2-app1-256/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-257/main.tf | 4 ---- run-all/project-2/project-2-app1-257/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-258/main.tf | 4 ---- run-all/project-2/project-2-app1-258/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-259/main.tf | 4 ---- run-all/project-2/project-2-app1-259/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-260/main.tf | 4 ---- run-all/project-2/project-2-app1-260/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-261/main.tf | 4 ---- run-all/project-2/project-2-app1-261/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-262/main.tf | 4 ---- run-all/project-2/project-2-app1-262/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-263/main.tf | 4 ---- run-all/project-2/project-2-app1-263/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-264/main.tf | 4 ---- run-all/project-2/project-2-app1-264/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-265/main.tf | 4 ---- run-all/project-2/project-2-app1-265/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-266/main.tf | 4 ---- run-all/project-2/project-2-app1-266/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-267/main.tf | 4 ---- run-all/project-2/project-2-app1-267/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-268/main.tf | 4 ---- run-all/project-2/project-2-app1-268/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-269/main.tf | 4 ---- run-all/project-2/project-2-app1-269/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-270/main.tf | 4 ---- run-all/project-2/project-2-app1-270/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-271/main.tf | 4 ---- run-all/project-2/project-2-app1-271/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-272/main.tf | 4 ---- run-all/project-2/project-2-app1-272/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-273/main.tf | 4 ---- run-all/project-2/project-2-app1-273/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-274/main.tf | 4 ---- run-all/project-2/project-2-app1-274/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-275/main.tf | 4 ---- run-all/project-2/project-2-app1-275/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-276/main.tf | 4 ---- run-all/project-2/project-2-app1-276/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-277/main.tf | 4 ---- run-all/project-2/project-2-app1-277/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-278/main.tf | 4 ---- run-all/project-2/project-2-app1-278/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-279/main.tf | 4 ---- run-all/project-2/project-2-app1-279/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-280/main.tf | 4 ---- run-all/project-2/project-2-app1-280/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-281/main.tf | 4 ---- run-all/project-2/project-2-app1-281/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-282/main.tf | 4 ---- run-all/project-2/project-2-app1-282/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-283/main.tf | 4 ---- run-all/project-2/project-2-app1-283/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-284/main.tf | 4 ---- run-all/project-2/project-2-app1-284/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-285/main.tf | 4 ---- run-all/project-2/project-2-app1-285/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-286/main.tf | 4 ---- run-all/project-2/project-2-app1-286/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-287/main.tf | 4 ---- run-all/project-2/project-2-app1-287/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-288/main.tf | 4 ---- run-all/project-2/project-2-app1-288/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-289/main.tf | 4 ---- run-all/project-2/project-2-app1-289/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-290/main.tf | 4 ---- run-all/project-2/project-2-app1-290/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-291/main.tf | 4 ---- run-all/project-2/project-2-app1-291/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-292/main.tf | 4 ---- run-all/project-2/project-2-app1-292/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-293/main.tf | 4 ---- run-all/project-2/project-2-app1-293/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-294/main.tf | 4 ---- run-all/project-2/project-2-app1-294/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-295/main.tf | 4 ---- run-all/project-2/project-2-app1-295/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-296/main.tf | 4 ---- run-all/project-2/project-2-app1-296/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-297/main.tf | 4 ---- run-all/project-2/project-2-app1-297/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-298/main.tf | 4 ---- run-all/project-2/project-2-app1-298/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-299/main.tf | 4 ---- run-all/project-2/project-2-app1-299/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-300/main.tf | 4 ---- run-all/project-2/project-2-app1-300/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-301/main.tf | 4 ---- run-all/project-2/project-2-app1-301/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-302/main.tf | 4 ---- run-all/project-2/project-2-app1-302/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-303/main.tf | 4 ---- run-all/project-2/project-2-app1-303/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-304/main.tf | 4 ---- run-all/project-2/project-2-app1-304/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-305/main.tf | 4 ---- run-all/project-2/project-2-app1-305/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-306/main.tf | 4 ---- run-all/project-2/project-2-app1-306/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-307/main.tf | 4 ---- run-all/project-2/project-2-app1-307/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-308/main.tf | 4 ---- run-all/project-2/project-2-app1-308/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-309/main.tf | 4 ---- run-all/project-2/project-2-app1-309/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-310/main.tf | 4 ---- run-all/project-2/project-2-app1-310/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-311/main.tf | 4 ---- run-all/project-2/project-2-app1-311/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-312/main.tf | 4 ---- run-all/project-2/project-2-app1-312/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-313/main.tf | 4 ---- run-all/project-2/project-2-app1-313/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-314/main.tf | 4 ---- run-all/project-2/project-2-app1-314/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-315/main.tf | 4 ---- run-all/project-2/project-2-app1-315/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-316/main.tf | 4 ---- run-all/project-2/project-2-app1-316/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-317/main.tf | 4 ---- run-all/project-2/project-2-app1-317/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-318/main.tf | 4 ---- run-all/project-2/project-2-app1-318/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-319/main.tf | 4 ---- run-all/project-2/project-2-app1-319/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-320/main.tf | 4 ---- run-all/project-2/project-2-app1-320/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-321/main.tf | 4 ---- run-all/project-2/project-2-app1-321/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-322/main.tf | 4 ---- run-all/project-2/project-2-app1-322/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-323/main.tf | 4 ---- run-all/project-2/project-2-app1-323/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-324/main.tf | 4 ---- run-all/project-2/project-2-app1-324/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-325/main.tf | 4 ---- run-all/project-2/project-2-app1-325/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-326/main.tf | 4 ---- run-all/project-2/project-2-app1-326/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-327/main.tf | 4 ---- run-all/project-2/project-2-app1-327/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-328/main.tf | 4 ---- run-all/project-2/project-2-app1-328/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-329/main.tf | 4 ---- run-all/project-2/project-2-app1-329/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-330/main.tf | 4 ---- run-all/project-2/project-2-app1-330/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-331/main.tf | 4 ---- run-all/project-2/project-2-app1-331/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-332/main.tf | 4 ---- run-all/project-2/project-2-app1-332/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-333/main.tf | 4 ---- run-all/project-2/project-2-app1-333/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-334/main.tf | 4 ---- run-all/project-2/project-2-app1-334/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-335/main.tf | 4 ---- run-all/project-2/project-2-app1-335/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-336/main.tf | 4 ---- run-all/project-2/project-2-app1-336/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-337/main.tf | 4 ---- run-all/project-2/project-2-app1-337/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-338/main.tf | 4 ---- run-all/project-2/project-2-app1-338/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-339/main.tf | 4 ---- run-all/project-2/project-2-app1-339/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-340/main.tf | 4 ---- run-all/project-2/project-2-app1-340/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-341/main.tf | 4 ---- run-all/project-2/project-2-app1-341/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-342/main.tf | 4 ---- run-all/project-2/project-2-app1-342/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-343/main.tf | 4 ---- run-all/project-2/project-2-app1-343/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-344/main.tf | 4 ---- run-all/project-2/project-2-app1-344/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-345/main.tf | 4 ---- run-all/project-2/project-2-app1-345/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-346/main.tf | 4 ---- run-all/project-2/project-2-app1-346/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-347/main.tf | 4 ---- run-all/project-2/project-2-app1-347/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-348/main.tf | 4 ---- run-all/project-2/project-2-app1-348/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-349/main.tf | 4 ---- run-all/project-2/project-2-app1-349/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-350/main.tf | 4 ---- run-all/project-2/project-2-app1-350/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-351/main.tf | 4 ---- run-all/project-2/project-2-app1-351/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-352/main.tf | 4 ---- run-all/project-2/project-2-app1-352/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-353/main.tf | 4 ---- run-all/project-2/project-2-app1-353/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-354/main.tf | 4 ---- run-all/project-2/project-2-app1-354/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-355/main.tf | 4 ---- run-all/project-2/project-2-app1-355/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-356/main.tf | 4 ---- run-all/project-2/project-2-app1-356/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-357/main.tf | 4 ---- run-all/project-2/project-2-app1-357/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-358/main.tf | 4 ---- run-all/project-2/project-2-app1-358/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-359/main.tf | 4 ---- run-all/project-2/project-2-app1-359/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-360/main.tf | 4 ---- run-all/project-2/project-2-app1-360/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-361/main.tf | 4 ---- run-all/project-2/project-2-app1-361/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-362/main.tf | 4 ---- run-all/project-2/project-2-app1-362/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-363/main.tf | 4 ---- run-all/project-2/project-2-app1-363/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-364/main.tf | 4 ---- run-all/project-2/project-2-app1-364/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-365/main.tf | 4 ---- run-all/project-2/project-2-app1-365/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-366/main.tf | 4 ---- run-all/project-2/project-2-app1-366/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-367/main.tf | 4 ---- run-all/project-2/project-2-app1-367/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-368/main.tf | 4 ---- run-all/project-2/project-2-app1-368/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-369/main.tf | 4 ---- run-all/project-2/project-2-app1-369/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-370/main.tf | 4 ---- run-all/project-2/project-2-app1-370/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-371/main.tf | 4 ---- run-all/project-2/project-2-app1-371/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-372/main.tf | 4 ---- run-all/project-2/project-2-app1-372/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-373/main.tf | 4 ---- run-all/project-2/project-2-app1-373/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-374/main.tf | 4 ---- run-all/project-2/project-2-app1-374/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-375/main.tf | 4 ---- run-all/project-2/project-2-app1-375/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-376/main.tf | 4 ---- run-all/project-2/project-2-app1-376/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-377/main.tf | 4 ---- run-all/project-2/project-2-app1-377/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-378/main.tf | 4 ---- run-all/project-2/project-2-app1-378/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-379/main.tf | 4 ---- run-all/project-2/project-2-app1-379/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-380/main.tf | 4 ---- run-all/project-2/project-2-app1-380/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-381/main.tf | 4 ---- run-all/project-2/project-2-app1-381/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-382/main.tf | 4 ---- run-all/project-2/project-2-app1-382/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-383/main.tf | 4 ---- run-all/project-2/project-2-app1-383/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-384/main.tf | 4 ---- run-all/project-2/project-2-app1-384/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-385/main.tf | 4 ---- run-all/project-2/project-2-app1-385/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-386/main.tf | 4 ---- run-all/project-2/project-2-app1-386/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-387/main.tf | 4 ---- run-all/project-2/project-2-app1-387/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-388/main.tf | 4 ---- run-all/project-2/project-2-app1-388/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-389/main.tf | 4 ---- run-all/project-2/project-2-app1-389/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-390/main.tf | 4 ---- run-all/project-2/project-2-app1-390/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-391/main.tf | 4 ---- run-all/project-2/project-2-app1-391/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-392/main.tf | 4 ---- run-all/project-2/project-2-app1-392/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-393/main.tf | 4 ---- run-all/project-2/project-2-app1-393/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-394/main.tf | 4 ---- run-all/project-2/project-2-app1-394/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-395/main.tf | 4 ---- run-all/project-2/project-2-app1-395/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-396/main.tf | 4 ---- run-all/project-2/project-2-app1-396/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-397/main.tf | 4 ---- run-all/project-2/project-2-app1-397/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-398/main.tf | 4 ---- run-all/project-2/project-2-app1-398/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-399/main.tf | 4 ---- run-all/project-2/project-2-app1-399/terragrunt.hcl | 12 ------------ run-all/project-2/project-2-app1-400/main.tf | 4 ---- run-all/project-2/project-2-app1-400/terragrunt.hcl | 12 ------------ 700 files changed, 5600 deletions(-) delete mode 100644 run-all/project-2/project-2-app1-051/main.tf delete mode 100644 run-all/project-2/project-2-app1-051/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-052/main.tf delete mode 100644 run-all/project-2/project-2-app1-052/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-053/main.tf delete mode 100644 run-all/project-2/project-2-app1-053/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-054/main.tf delete mode 100644 run-all/project-2/project-2-app1-054/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-055/main.tf delete mode 100644 run-all/project-2/project-2-app1-055/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-056/main.tf delete mode 100644 run-all/project-2/project-2-app1-056/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-057/main.tf delete mode 100644 run-all/project-2/project-2-app1-057/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-058/main.tf delete mode 100644 run-all/project-2/project-2-app1-058/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-059/main.tf delete mode 100644 run-all/project-2/project-2-app1-059/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-060/main.tf delete mode 100644 run-all/project-2/project-2-app1-060/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-061/main.tf delete mode 100644 run-all/project-2/project-2-app1-061/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-062/main.tf delete mode 100644 run-all/project-2/project-2-app1-062/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-063/main.tf delete mode 100644 run-all/project-2/project-2-app1-063/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-064/main.tf delete mode 100644 run-all/project-2/project-2-app1-064/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-065/main.tf delete mode 100644 run-all/project-2/project-2-app1-065/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-066/main.tf delete mode 100644 run-all/project-2/project-2-app1-066/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-067/main.tf delete mode 100644 run-all/project-2/project-2-app1-067/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-068/main.tf delete mode 100644 run-all/project-2/project-2-app1-068/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-069/main.tf delete mode 100644 run-all/project-2/project-2-app1-069/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-070/main.tf delete mode 100644 run-all/project-2/project-2-app1-070/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-071/main.tf delete mode 100644 run-all/project-2/project-2-app1-071/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-072/main.tf delete mode 100644 run-all/project-2/project-2-app1-072/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-073/main.tf delete mode 100644 run-all/project-2/project-2-app1-073/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-074/main.tf delete mode 100644 run-all/project-2/project-2-app1-074/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-075/main.tf delete mode 100644 run-all/project-2/project-2-app1-075/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-076/main.tf delete mode 100644 run-all/project-2/project-2-app1-076/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-077/main.tf delete mode 100644 run-all/project-2/project-2-app1-077/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-078/main.tf delete mode 100644 run-all/project-2/project-2-app1-078/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-079/main.tf delete mode 100644 run-all/project-2/project-2-app1-079/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-080/main.tf delete mode 100644 run-all/project-2/project-2-app1-080/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-081/main.tf delete mode 100644 run-all/project-2/project-2-app1-081/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-082/main.tf delete mode 100644 run-all/project-2/project-2-app1-082/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-083/main.tf delete mode 100644 run-all/project-2/project-2-app1-083/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-084/main.tf delete mode 100644 run-all/project-2/project-2-app1-084/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-085/main.tf delete mode 100644 run-all/project-2/project-2-app1-085/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-086/main.tf delete mode 100644 run-all/project-2/project-2-app1-086/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-087/main.tf delete mode 100644 run-all/project-2/project-2-app1-087/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-088/main.tf delete mode 100644 run-all/project-2/project-2-app1-088/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-089/main.tf delete mode 100644 run-all/project-2/project-2-app1-089/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-090/main.tf delete mode 100644 run-all/project-2/project-2-app1-090/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-091/main.tf delete mode 100644 run-all/project-2/project-2-app1-091/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-092/main.tf delete mode 100644 run-all/project-2/project-2-app1-092/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-093/main.tf delete mode 100644 run-all/project-2/project-2-app1-093/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-094/main.tf delete mode 100644 run-all/project-2/project-2-app1-094/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-095/main.tf delete mode 100644 run-all/project-2/project-2-app1-095/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-096/main.tf delete mode 100644 run-all/project-2/project-2-app1-096/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-097/main.tf delete mode 100644 run-all/project-2/project-2-app1-097/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-098/main.tf delete mode 100644 run-all/project-2/project-2-app1-098/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-099/main.tf delete mode 100644 run-all/project-2/project-2-app1-099/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-100/main.tf delete mode 100644 run-all/project-2/project-2-app1-100/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-101/main.tf delete mode 100644 run-all/project-2/project-2-app1-101/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-102/main.tf delete mode 100644 run-all/project-2/project-2-app1-102/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-103/main.tf delete mode 100644 run-all/project-2/project-2-app1-103/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-104/main.tf delete mode 100644 run-all/project-2/project-2-app1-104/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-105/main.tf delete mode 100644 run-all/project-2/project-2-app1-105/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-106/main.tf delete mode 100644 run-all/project-2/project-2-app1-106/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-107/main.tf delete mode 100644 run-all/project-2/project-2-app1-107/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-108/main.tf delete mode 100644 run-all/project-2/project-2-app1-108/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-109/main.tf delete mode 100644 run-all/project-2/project-2-app1-109/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-110/main.tf delete mode 100644 run-all/project-2/project-2-app1-110/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-111/main.tf delete mode 100644 run-all/project-2/project-2-app1-111/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-112/main.tf delete mode 100644 run-all/project-2/project-2-app1-112/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-113/main.tf delete mode 100644 run-all/project-2/project-2-app1-113/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-114/main.tf delete mode 100644 run-all/project-2/project-2-app1-114/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-115/main.tf delete mode 100644 run-all/project-2/project-2-app1-115/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-116/main.tf delete mode 100644 run-all/project-2/project-2-app1-116/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-117/main.tf delete mode 100644 run-all/project-2/project-2-app1-117/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-118/main.tf delete mode 100644 run-all/project-2/project-2-app1-118/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-119/main.tf delete mode 100644 run-all/project-2/project-2-app1-119/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-120/main.tf delete mode 100644 run-all/project-2/project-2-app1-120/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-121/main.tf delete mode 100644 run-all/project-2/project-2-app1-121/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-122/main.tf delete mode 100644 run-all/project-2/project-2-app1-122/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-123/main.tf delete mode 100644 run-all/project-2/project-2-app1-123/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-124/main.tf delete mode 100644 run-all/project-2/project-2-app1-124/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-125/main.tf delete mode 100644 run-all/project-2/project-2-app1-125/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-126/main.tf delete mode 100644 run-all/project-2/project-2-app1-126/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-127/main.tf delete mode 100644 run-all/project-2/project-2-app1-127/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-128/main.tf delete mode 100644 run-all/project-2/project-2-app1-128/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-129/main.tf delete mode 100644 run-all/project-2/project-2-app1-129/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-130/main.tf delete mode 100644 run-all/project-2/project-2-app1-130/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-131/main.tf delete mode 100644 run-all/project-2/project-2-app1-131/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-132/main.tf delete mode 100644 run-all/project-2/project-2-app1-132/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-133/main.tf delete mode 100644 run-all/project-2/project-2-app1-133/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-134/main.tf delete mode 100644 run-all/project-2/project-2-app1-134/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-135/main.tf delete mode 100644 run-all/project-2/project-2-app1-135/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-136/main.tf delete mode 100644 run-all/project-2/project-2-app1-136/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-137/main.tf delete mode 100644 run-all/project-2/project-2-app1-137/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-138/main.tf delete mode 100644 run-all/project-2/project-2-app1-138/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-139/main.tf delete mode 100644 run-all/project-2/project-2-app1-139/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-140/main.tf delete mode 100644 run-all/project-2/project-2-app1-140/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-141/main.tf delete mode 100644 run-all/project-2/project-2-app1-141/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-142/main.tf delete mode 100644 run-all/project-2/project-2-app1-142/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-143/main.tf delete mode 100644 run-all/project-2/project-2-app1-143/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-144/main.tf delete mode 100644 run-all/project-2/project-2-app1-144/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-145/main.tf delete mode 100644 run-all/project-2/project-2-app1-145/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-146/main.tf delete mode 100644 run-all/project-2/project-2-app1-146/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-147/main.tf delete mode 100644 run-all/project-2/project-2-app1-147/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-148/main.tf delete mode 100644 run-all/project-2/project-2-app1-148/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-149/main.tf delete mode 100644 run-all/project-2/project-2-app1-149/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-150/main.tf delete mode 100644 run-all/project-2/project-2-app1-150/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-151/main.tf delete mode 100644 run-all/project-2/project-2-app1-151/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-152/main.tf delete mode 100644 run-all/project-2/project-2-app1-152/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-153/main.tf delete mode 100644 run-all/project-2/project-2-app1-153/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-154/main.tf delete mode 100644 run-all/project-2/project-2-app1-154/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-155/main.tf delete mode 100644 run-all/project-2/project-2-app1-155/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-156/main.tf delete mode 100644 run-all/project-2/project-2-app1-156/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-157/main.tf delete mode 100644 run-all/project-2/project-2-app1-157/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-158/main.tf delete mode 100644 run-all/project-2/project-2-app1-158/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-159/main.tf delete mode 100644 run-all/project-2/project-2-app1-159/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-160/main.tf delete mode 100644 run-all/project-2/project-2-app1-160/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-161/main.tf delete mode 100644 run-all/project-2/project-2-app1-161/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-162/main.tf delete mode 100644 run-all/project-2/project-2-app1-162/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-163/main.tf delete mode 100644 run-all/project-2/project-2-app1-163/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-164/main.tf delete mode 100644 run-all/project-2/project-2-app1-164/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-165/main.tf delete mode 100644 run-all/project-2/project-2-app1-165/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-166/main.tf delete mode 100644 run-all/project-2/project-2-app1-166/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-167/main.tf delete mode 100644 run-all/project-2/project-2-app1-167/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-168/main.tf delete mode 100644 run-all/project-2/project-2-app1-168/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-169/main.tf delete mode 100644 run-all/project-2/project-2-app1-169/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-170/main.tf delete mode 100644 run-all/project-2/project-2-app1-170/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-171/main.tf delete mode 100644 run-all/project-2/project-2-app1-171/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-172/main.tf delete mode 100644 run-all/project-2/project-2-app1-172/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-173/main.tf delete mode 100644 run-all/project-2/project-2-app1-173/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-174/main.tf delete mode 100644 run-all/project-2/project-2-app1-174/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-175/main.tf delete mode 100644 run-all/project-2/project-2-app1-175/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-176/main.tf delete mode 100644 run-all/project-2/project-2-app1-176/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-177/main.tf delete mode 100644 run-all/project-2/project-2-app1-177/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-178/main.tf delete mode 100644 run-all/project-2/project-2-app1-178/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-179/main.tf delete mode 100644 run-all/project-2/project-2-app1-179/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-180/main.tf delete mode 100644 run-all/project-2/project-2-app1-180/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-181/main.tf delete mode 100644 run-all/project-2/project-2-app1-181/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-182/main.tf delete mode 100644 run-all/project-2/project-2-app1-182/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-183/main.tf delete mode 100644 run-all/project-2/project-2-app1-183/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-184/main.tf delete mode 100644 run-all/project-2/project-2-app1-184/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-185/main.tf delete mode 100644 run-all/project-2/project-2-app1-185/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-186/main.tf delete mode 100644 run-all/project-2/project-2-app1-186/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-187/main.tf delete mode 100644 run-all/project-2/project-2-app1-187/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-188/main.tf delete mode 100644 run-all/project-2/project-2-app1-188/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-189/main.tf delete mode 100644 run-all/project-2/project-2-app1-189/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-190/main.tf delete mode 100644 run-all/project-2/project-2-app1-190/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-191/main.tf delete mode 100644 run-all/project-2/project-2-app1-191/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-192/main.tf delete mode 100644 run-all/project-2/project-2-app1-192/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-193/main.tf delete mode 100644 run-all/project-2/project-2-app1-193/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-194/main.tf delete mode 100644 run-all/project-2/project-2-app1-194/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-195/main.tf delete mode 100644 run-all/project-2/project-2-app1-195/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-196/main.tf delete mode 100644 run-all/project-2/project-2-app1-196/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-197/main.tf delete mode 100644 run-all/project-2/project-2-app1-197/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-198/main.tf delete mode 100644 run-all/project-2/project-2-app1-198/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-199/main.tf delete mode 100644 run-all/project-2/project-2-app1-199/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-200/main.tf delete mode 100644 run-all/project-2/project-2-app1-200/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-201/main.tf delete mode 100644 run-all/project-2/project-2-app1-201/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-202/main.tf delete mode 100644 run-all/project-2/project-2-app1-202/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-203/main.tf delete mode 100644 run-all/project-2/project-2-app1-203/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-204/main.tf delete mode 100644 run-all/project-2/project-2-app1-204/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-205/main.tf delete mode 100644 run-all/project-2/project-2-app1-205/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-206/main.tf delete mode 100644 run-all/project-2/project-2-app1-206/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-207/main.tf delete mode 100644 run-all/project-2/project-2-app1-207/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-208/main.tf delete mode 100644 run-all/project-2/project-2-app1-208/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-209/main.tf delete mode 100644 run-all/project-2/project-2-app1-209/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-210/main.tf delete mode 100644 run-all/project-2/project-2-app1-210/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-211/main.tf delete mode 100644 run-all/project-2/project-2-app1-211/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-212/main.tf delete mode 100644 run-all/project-2/project-2-app1-212/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-213/main.tf delete mode 100644 run-all/project-2/project-2-app1-213/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-214/main.tf delete mode 100644 run-all/project-2/project-2-app1-214/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-215/main.tf delete mode 100644 run-all/project-2/project-2-app1-215/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-216/main.tf delete mode 100644 run-all/project-2/project-2-app1-216/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-217/main.tf delete mode 100644 run-all/project-2/project-2-app1-217/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-218/main.tf delete mode 100644 run-all/project-2/project-2-app1-218/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-219/main.tf delete mode 100644 run-all/project-2/project-2-app1-219/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-220/main.tf delete mode 100644 run-all/project-2/project-2-app1-220/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-221/main.tf delete mode 100644 run-all/project-2/project-2-app1-221/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-222/main.tf delete mode 100644 run-all/project-2/project-2-app1-222/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-223/main.tf delete mode 100644 run-all/project-2/project-2-app1-223/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-224/main.tf delete mode 100644 run-all/project-2/project-2-app1-224/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-225/main.tf delete mode 100644 run-all/project-2/project-2-app1-225/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-226/main.tf delete mode 100644 run-all/project-2/project-2-app1-226/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-227/main.tf delete mode 100644 run-all/project-2/project-2-app1-227/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-228/main.tf delete mode 100644 run-all/project-2/project-2-app1-228/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-229/main.tf delete mode 100644 run-all/project-2/project-2-app1-229/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-230/main.tf delete mode 100644 run-all/project-2/project-2-app1-230/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-231/main.tf delete mode 100644 run-all/project-2/project-2-app1-231/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-232/main.tf delete mode 100644 run-all/project-2/project-2-app1-232/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-233/main.tf delete mode 100644 run-all/project-2/project-2-app1-233/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-234/main.tf delete mode 100644 run-all/project-2/project-2-app1-234/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-235/main.tf delete mode 100644 run-all/project-2/project-2-app1-235/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-236/main.tf delete mode 100644 run-all/project-2/project-2-app1-236/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-237/main.tf delete mode 100644 run-all/project-2/project-2-app1-237/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-238/main.tf delete mode 100644 run-all/project-2/project-2-app1-238/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-239/main.tf delete mode 100644 run-all/project-2/project-2-app1-239/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-240/main.tf delete mode 100644 run-all/project-2/project-2-app1-240/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-241/main.tf delete mode 100644 run-all/project-2/project-2-app1-241/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-242/main.tf delete mode 100644 run-all/project-2/project-2-app1-242/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-243/main.tf delete mode 100644 run-all/project-2/project-2-app1-243/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-244/main.tf delete mode 100644 run-all/project-2/project-2-app1-244/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-245/main.tf delete mode 100644 run-all/project-2/project-2-app1-245/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-246/main.tf delete mode 100644 run-all/project-2/project-2-app1-246/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-247/main.tf delete mode 100644 run-all/project-2/project-2-app1-247/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-248/main.tf delete mode 100644 run-all/project-2/project-2-app1-248/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-249/main.tf delete mode 100644 run-all/project-2/project-2-app1-249/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-250/main.tf delete mode 100644 run-all/project-2/project-2-app1-250/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-251/main.tf delete mode 100644 run-all/project-2/project-2-app1-251/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-252/main.tf delete mode 100644 run-all/project-2/project-2-app1-252/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-253/main.tf delete mode 100644 run-all/project-2/project-2-app1-253/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-254/main.tf delete mode 100644 run-all/project-2/project-2-app1-254/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-255/main.tf delete mode 100644 run-all/project-2/project-2-app1-255/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-256/main.tf delete mode 100644 run-all/project-2/project-2-app1-256/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-257/main.tf delete mode 100644 run-all/project-2/project-2-app1-257/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-258/main.tf delete mode 100644 run-all/project-2/project-2-app1-258/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-259/main.tf delete mode 100644 run-all/project-2/project-2-app1-259/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-260/main.tf delete mode 100644 run-all/project-2/project-2-app1-260/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-261/main.tf delete mode 100644 run-all/project-2/project-2-app1-261/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-262/main.tf delete mode 100644 run-all/project-2/project-2-app1-262/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-263/main.tf delete mode 100644 run-all/project-2/project-2-app1-263/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-264/main.tf delete mode 100644 run-all/project-2/project-2-app1-264/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-265/main.tf delete mode 100644 run-all/project-2/project-2-app1-265/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-266/main.tf delete mode 100644 run-all/project-2/project-2-app1-266/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-267/main.tf delete mode 100644 run-all/project-2/project-2-app1-267/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-268/main.tf delete mode 100644 run-all/project-2/project-2-app1-268/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-269/main.tf delete mode 100644 run-all/project-2/project-2-app1-269/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-270/main.tf delete mode 100644 run-all/project-2/project-2-app1-270/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-271/main.tf delete mode 100644 run-all/project-2/project-2-app1-271/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-272/main.tf delete mode 100644 run-all/project-2/project-2-app1-272/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-273/main.tf delete mode 100644 run-all/project-2/project-2-app1-273/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-274/main.tf delete mode 100644 run-all/project-2/project-2-app1-274/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-275/main.tf delete mode 100644 run-all/project-2/project-2-app1-275/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-276/main.tf delete mode 100644 run-all/project-2/project-2-app1-276/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-277/main.tf delete mode 100644 run-all/project-2/project-2-app1-277/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-278/main.tf delete mode 100644 run-all/project-2/project-2-app1-278/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-279/main.tf delete mode 100644 run-all/project-2/project-2-app1-279/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-280/main.tf delete mode 100644 run-all/project-2/project-2-app1-280/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-281/main.tf delete mode 100644 run-all/project-2/project-2-app1-281/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-282/main.tf delete mode 100644 run-all/project-2/project-2-app1-282/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-283/main.tf delete mode 100644 run-all/project-2/project-2-app1-283/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-284/main.tf delete mode 100644 run-all/project-2/project-2-app1-284/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-285/main.tf delete mode 100644 run-all/project-2/project-2-app1-285/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-286/main.tf delete mode 100644 run-all/project-2/project-2-app1-286/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-287/main.tf delete mode 100644 run-all/project-2/project-2-app1-287/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-288/main.tf delete mode 100644 run-all/project-2/project-2-app1-288/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-289/main.tf delete mode 100644 run-all/project-2/project-2-app1-289/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-290/main.tf delete mode 100644 run-all/project-2/project-2-app1-290/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-291/main.tf delete mode 100644 run-all/project-2/project-2-app1-291/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-292/main.tf delete mode 100644 run-all/project-2/project-2-app1-292/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-293/main.tf delete mode 100644 run-all/project-2/project-2-app1-293/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-294/main.tf delete mode 100644 run-all/project-2/project-2-app1-294/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-295/main.tf delete mode 100644 run-all/project-2/project-2-app1-295/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-296/main.tf delete mode 100644 run-all/project-2/project-2-app1-296/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-297/main.tf delete mode 100644 run-all/project-2/project-2-app1-297/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-298/main.tf delete mode 100644 run-all/project-2/project-2-app1-298/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-299/main.tf delete mode 100644 run-all/project-2/project-2-app1-299/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-300/main.tf delete mode 100644 run-all/project-2/project-2-app1-300/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-301/main.tf delete mode 100644 run-all/project-2/project-2-app1-301/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-302/main.tf delete mode 100644 run-all/project-2/project-2-app1-302/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-303/main.tf delete mode 100644 run-all/project-2/project-2-app1-303/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-304/main.tf delete mode 100644 run-all/project-2/project-2-app1-304/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-305/main.tf delete mode 100644 run-all/project-2/project-2-app1-305/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-306/main.tf delete mode 100644 run-all/project-2/project-2-app1-306/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-307/main.tf delete mode 100644 run-all/project-2/project-2-app1-307/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-308/main.tf delete mode 100644 run-all/project-2/project-2-app1-308/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-309/main.tf delete mode 100644 run-all/project-2/project-2-app1-309/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-310/main.tf delete mode 100644 run-all/project-2/project-2-app1-310/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-311/main.tf delete mode 100644 run-all/project-2/project-2-app1-311/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-312/main.tf delete mode 100644 run-all/project-2/project-2-app1-312/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-313/main.tf delete mode 100644 run-all/project-2/project-2-app1-313/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-314/main.tf delete mode 100644 run-all/project-2/project-2-app1-314/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-315/main.tf delete mode 100644 run-all/project-2/project-2-app1-315/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-316/main.tf delete mode 100644 run-all/project-2/project-2-app1-316/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-317/main.tf delete mode 100644 run-all/project-2/project-2-app1-317/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-318/main.tf delete mode 100644 run-all/project-2/project-2-app1-318/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-319/main.tf delete mode 100644 run-all/project-2/project-2-app1-319/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-320/main.tf delete mode 100644 run-all/project-2/project-2-app1-320/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-321/main.tf delete mode 100644 run-all/project-2/project-2-app1-321/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-322/main.tf delete mode 100644 run-all/project-2/project-2-app1-322/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-323/main.tf delete mode 100644 run-all/project-2/project-2-app1-323/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-324/main.tf delete mode 100644 run-all/project-2/project-2-app1-324/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-325/main.tf delete mode 100644 run-all/project-2/project-2-app1-325/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-326/main.tf delete mode 100644 run-all/project-2/project-2-app1-326/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-327/main.tf delete mode 100644 run-all/project-2/project-2-app1-327/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-328/main.tf delete mode 100644 run-all/project-2/project-2-app1-328/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-329/main.tf delete mode 100644 run-all/project-2/project-2-app1-329/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-330/main.tf delete mode 100644 run-all/project-2/project-2-app1-330/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-331/main.tf delete mode 100644 run-all/project-2/project-2-app1-331/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-332/main.tf delete mode 100644 run-all/project-2/project-2-app1-332/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-333/main.tf delete mode 100644 run-all/project-2/project-2-app1-333/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-334/main.tf delete mode 100644 run-all/project-2/project-2-app1-334/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-335/main.tf delete mode 100644 run-all/project-2/project-2-app1-335/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-336/main.tf delete mode 100644 run-all/project-2/project-2-app1-336/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-337/main.tf delete mode 100644 run-all/project-2/project-2-app1-337/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-338/main.tf delete mode 100644 run-all/project-2/project-2-app1-338/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-339/main.tf delete mode 100644 run-all/project-2/project-2-app1-339/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-340/main.tf delete mode 100644 run-all/project-2/project-2-app1-340/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-341/main.tf delete mode 100644 run-all/project-2/project-2-app1-341/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-342/main.tf delete mode 100644 run-all/project-2/project-2-app1-342/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-343/main.tf delete mode 100644 run-all/project-2/project-2-app1-343/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-344/main.tf delete mode 100644 run-all/project-2/project-2-app1-344/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-345/main.tf delete mode 100644 run-all/project-2/project-2-app1-345/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-346/main.tf delete mode 100644 run-all/project-2/project-2-app1-346/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-347/main.tf delete mode 100644 run-all/project-2/project-2-app1-347/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-348/main.tf delete mode 100644 run-all/project-2/project-2-app1-348/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-349/main.tf delete mode 100644 run-all/project-2/project-2-app1-349/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-350/main.tf delete mode 100644 run-all/project-2/project-2-app1-350/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-351/main.tf delete mode 100644 run-all/project-2/project-2-app1-351/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-352/main.tf delete mode 100644 run-all/project-2/project-2-app1-352/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-353/main.tf delete mode 100644 run-all/project-2/project-2-app1-353/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-354/main.tf delete mode 100644 run-all/project-2/project-2-app1-354/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-355/main.tf delete mode 100644 run-all/project-2/project-2-app1-355/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-356/main.tf delete mode 100644 run-all/project-2/project-2-app1-356/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-357/main.tf delete mode 100644 run-all/project-2/project-2-app1-357/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-358/main.tf delete mode 100644 run-all/project-2/project-2-app1-358/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-359/main.tf delete mode 100644 run-all/project-2/project-2-app1-359/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-360/main.tf delete mode 100644 run-all/project-2/project-2-app1-360/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-361/main.tf delete mode 100644 run-all/project-2/project-2-app1-361/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-362/main.tf delete mode 100644 run-all/project-2/project-2-app1-362/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-363/main.tf delete mode 100644 run-all/project-2/project-2-app1-363/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-364/main.tf delete mode 100644 run-all/project-2/project-2-app1-364/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-365/main.tf delete mode 100644 run-all/project-2/project-2-app1-365/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-366/main.tf delete mode 100644 run-all/project-2/project-2-app1-366/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-367/main.tf delete mode 100644 run-all/project-2/project-2-app1-367/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-368/main.tf delete mode 100644 run-all/project-2/project-2-app1-368/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-369/main.tf delete mode 100644 run-all/project-2/project-2-app1-369/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-370/main.tf delete mode 100644 run-all/project-2/project-2-app1-370/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-371/main.tf delete mode 100644 run-all/project-2/project-2-app1-371/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-372/main.tf delete mode 100644 run-all/project-2/project-2-app1-372/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-373/main.tf delete mode 100644 run-all/project-2/project-2-app1-373/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-374/main.tf delete mode 100644 run-all/project-2/project-2-app1-374/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-375/main.tf delete mode 100644 run-all/project-2/project-2-app1-375/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-376/main.tf delete mode 100644 run-all/project-2/project-2-app1-376/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-377/main.tf delete mode 100644 run-all/project-2/project-2-app1-377/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-378/main.tf delete mode 100644 run-all/project-2/project-2-app1-378/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-379/main.tf delete mode 100644 run-all/project-2/project-2-app1-379/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-380/main.tf delete mode 100644 run-all/project-2/project-2-app1-380/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-381/main.tf delete mode 100644 run-all/project-2/project-2-app1-381/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-382/main.tf delete mode 100644 run-all/project-2/project-2-app1-382/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-383/main.tf delete mode 100644 run-all/project-2/project-2-app1-383/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-384/main.tf delete mode 100644 run-all/project-2/project-2-app1-384/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-385/main.tf delete mode 100644 run-all/project-2/project-2-app1-385/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-386/main.tf delete mode 100644 run-all/project-2/project-2-app1-386/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-387/main.tf delete mode 100644 run-all/project-2/project-2-app1-387/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-388/main.tf delete mode 100644 run-all/project-2/project-2-app1-388/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-389/main.tf delete mode 100644 run-all/project-2/project-2-app1-389/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-390/main.tf delete mode 100644 run-all/project-2/project-2-app1-390/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-391/main.tf delete mode 100644 run-all/project-2/project-2-app1-391/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-392/main.tf delete mode 100644 run-all/project-2/project-2-app1-392/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-393/main.tf delete mode 100644 run-all/project-2/project-2-app1-393/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-394/main.tf delete mode 100644 run-all/project-2/project-2-app1-394/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-395/main.tf delete mode 100644 run-all/project-2/project-2-app1-395/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-396/main.tf delete mode 100644 run-all/project-2/project-2-app1-396/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-397/main.tf delete mode 100644 run-all/project-2/project-2-app1-397/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-398/main.tf delete mode 100644 run-all/project-2/project-2-app1-398/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-399/main.tf delete mode 100644 run-all/project-2/project-2-app1-399/terragrunt.hcl delete mode 100644 run-all/project-2/project-2-app1-400/main.tf delete mode 100644 run-all/project-2/project-2-app1-400/terragrunt.hcl diff --git a/run-all/project-2/project-2-app1-051/main.tf b/run-all/project-2/project-2-app1-051/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-051/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-051/terragrunt.hcl b/run-all/project-2/project-2-app1-051/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-051/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-052/main.tf b/run-all/project-2/project-2-app1-052/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-052/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-052/terragrunt.hcl b/run-all/project-2/project-2-app1-052/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-052/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-053/main.tf b/run-all/project-2/project-2-app1-053/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-053/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-053/terragrunt.hcl b/run-all/project-2/project-2-app1-053/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-053/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-054/main.tf b/run-all/project-2/project-2-app1-054/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-054/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-054/terragrunt.hcl b/run-all/project-2/project-2-app1-054/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-054/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-055/main.tf b/run-all/project-2/project-2-app1-055/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-055/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-055/terragrunt.hcl b/run-all/project-2/project-2-app1-055/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-055/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-056/main.tf b/run-all/project-2/project-2-app1-056/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-056/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-056/terragrunt.hcl b/run-all/project-2/project-2-app1-056/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-056/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-057/main.tf b/run-all/project-2/project-2-app1-057/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-057/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-057/terragrunt.hcl b/run-all/project-2/project-2-app1-057/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-057/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-058/main.tf b/run-all/project-2/project-2-app1-058/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-058/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-058/terragrunt.hcl b/run-all/project-2/project-2-app1-058/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-058/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-059/main.tf b/run-all/project-2/project-2-app1-059/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-059/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-059/terragrunt.hcl b/run-all/project-2/project-2-app1-059/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-059/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-060/main.tf b/run-all/project-2/project-2-app1-060/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-060/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-060/terragrunt.hcl b/run-all/project-2/project-2-app1-060/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-060/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-061/main.tf b/run-all/project-2/project-2-app1-061/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-061/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-061/terragrunt.hcl b/run-all/project-2/project-2-app1-061/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-061/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-062/main.tf b/run-all/project-2/project-2-app1-062/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-062/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-062/terragrunt.hcl b/run-all/project-2/project-2-app1-062/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-062/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-063/main.tf b/run-all/project-2/project-2-app1-063/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-063/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-063/terragrunt.hcl b/run-all/project-2/project-2-app1-063/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-063/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-064/main.tf b/run-all/project-2/project-2-app1-064/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-064/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-064/terragrunt.hcl b/run-all/project-2/project-2-app1-064/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-064/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-065/main.tf b/run-all/project-2/project-2-app1-065/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-065/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-065/terragrunt.hcl b/run-all/project-2/project-2-app1-065/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-065/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-066/main.tf b/run-all/project-2/project-2-app1-066/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-066/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-066/terragrunt.hcl b/run-all/project-2/project-2-app1-066/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-066/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-067/main.tf b/run-all/project-2/project-2-app1-067/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-067/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-067/terragrunt.hcl b/run-all/project-2/project-2-app1-067/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-067/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-068/main.tf b/run-all/project-2/project-2-app1-068/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-068/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-068/terragrunt.hcl b/run-all/project-2/project-2-app1-068/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-068/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-069/main.tf b/run-all/project-2/project-2-app1-069/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-069/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-069/terragrunt.hcl b/run-all/project-2/project-2-app1-069/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-069/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-070/main.tf b/run-all/project-2/project-2-app1-070/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-070/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-070/terragrunt.hcl b/run-all/project-2/project-2-app1-070/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-070/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-071/main.tf b/run-all/project-2/project-2-app1-071/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-071/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-071/terragrunt.hcl b/run-all/project-2/project-2-app1-071/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-071/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-072/main.tf b/run-all/project-2/project-2-app1-072/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-072/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-072/terragrunt.hcl b/run-all/project-2/project-2-app1-072/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-072/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-073/main.tf b/run-all/project-2/project-2-app1-073/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-073/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-073/terragrunt.hcl b/run-all/project-2/project-2-app1-073/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-073/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-074/main.tf b/run-all/project-2/project-2-app1-074/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-074/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-074/terragrunt.hcl b/run-all/project-2/project-2-app1-074/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-074/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-075/main.tf b/run-all/project-2/project-2-app1-075/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-075/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-075/terragrunt.hcl b/run-all/project-2/project-2-app1-075/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-075/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-076/main.tf b/run-all/project-2/project-2-app1-076/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-076/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-076/terragrunt.hcl b/run-all/project-2/project-2-app1-076/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-076/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-077/main.tf b/run-all/project-2/project-2-app1-077/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-077/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-077/terragrunt.hcl b/run-all/project-2/project-2-app1-077/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-077/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-078/main.tf b/run-all/project-2/project-2-app1-078/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-078/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-078/terragrunt.hcl b/run-all/project-2/project-2-app1-078/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-078/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-079/main.tf b/run-all/project-2/project-2-app1-079/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-079/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-079/terragrunt.hcl b/run-all/project-2/project-2-app1-079/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-079/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-080/main.tf b/run-all/project-2/project-2-app1-080/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-080/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-080/terragrunt.hcl b/run-all/project-2/project-2-app1-080/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-080/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-081/main.tf b/run-all/project-2/project-2-app1-081/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-081/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-081/terragrunt.hcl b/run-all/project-2/project-2-app1-081/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-081/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-082/main.tf b/run-all/project-2/project-2-app1-082/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-082/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-082/terragrunt.hcl b/run-all/project-2/project-2-app1-082/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-082/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-083/main.tf b/run-all/project-2/project-2-app1-083/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-083/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-083/terragrunt.hcl b/run-all/project-2/project-2-app1-083/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-083/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-084/main.tf b/run-all/project-2/project-2-app1-084/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-084/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-084/terragrunt.hcl b/run-all/project-2/project-2-app1-084/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-084/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-085/main.tf b/run-all/project-2/project-2-app1-085/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-085/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-085/terragrunt.hcl b/run-all/project-2/project-2-app1-085/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-085/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-086/main.tf b/run-all/project-2/project-2-app1-086/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-086/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-086/terragrunt.hcl b/run-all/project-2/project-2-app1-086/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-086/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-087/main.tf b/run-all/project-2/project-2-app1-087/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-087/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-087/terragrunt.hcl b/run-all/project-2/project-2-app1-087/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-087/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-088/main.tf b/run-all/project-2/project-2-app1-088/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-088/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-088/terragrunt.hcl b/run-all/project-2/project-2-app1-088/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-088/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-089/main.tf b/run-all/project-2/project-2-app1-089/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-089/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-089/terragrunt.hcl b/run-all/project-2/project-2-app1-089/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-089/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-090/main.tf b/run-all/project-2/project-2-app1-090/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-090/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-090/terragrunt.hcl b/run-all/project-2/project-2-app1-090/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-090/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-091/main.tf b/run-all/project-2/project-2-app1-091/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-091/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-091/terragrunt.hcl b/run-all/project-2/project-2-app1-091/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-091/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-092/main.tf b/run-all/project-2/project-2-app1-092/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-092/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-092/terragrunt.hcl b/run-all/project-2/project-2-app1-092/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-092/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-093/main.tf b/run-all/project-2/project-2-app1-093/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-093/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-093/terragrunt.hcl b/run-all/project-2/project-2-app1-093/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-093/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-094/main.tf b/run-all/project-2/project-2-app1-094/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-094/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-094/terragrunt.hcl b/run-all/project-2/project-2-app1-094/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-094/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-095/main.tf b/run-all/project-2/project-2-app1-095/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-095/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-095/terragrunt.hcl b/run-all/project-2/project-2-app1-095/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-095/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-096/main.tf b/run-all/project-2/project-2-app1-096/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-096/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-096/terragrunt.hcl b/run-all/project-2/project-2-app1-096/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-096/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-097/main.tf b/run-all/project-2/project-2-app1-097/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-097/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-097/terragrunt.hcl b/run-all/project-2/project-2-app1-097/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-097/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-098/main.tf b/run-all/project-2/project-2-app1-098/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-098/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-098/terragrunt.hcl b/run-all/project-2/project-2-app1-098/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-098/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-099/main.tf b/run-all/project-2/project-2-app1-099/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-099/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-099/terragrunt.hcl b/run-all/project-2/project-2-app1-099/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-099/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-100/main.tf b/run-all/project-2/project-2-app1-100/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-100/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-100/terragrunt.hcl b/run-all/project-2/project-2-app1-100/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-100/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-101/main.tf b/run-all/project-2/project-2-app1-101/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-101/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-101/terragrunt.hcl b/run-all/project-2/project-2-app1-101/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-101/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-102/main.tf b/run-all/project-2/project-2-app1-102/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-102/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-102/terragrunt.hcl b/run-all/project-2/project-2-app1-102/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-102/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-103/main.tf b/run-all/project-2/project-2-app1-103/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-103/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-103/terragrunt.hcl b/run-all/project-2/project-2-app1-103/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-103/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-104/main.tf b/run-all/project-2/project-2-app1-104/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-104/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-104/terragrunt.hcl b/run-all/project-2/project-2-app1-104/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-104/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-105/main.tf b/run-all/project-2/project-2-app1-105/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-105/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-105/terragrunt.hcl b/run-all/project-2/project-2-app1-105/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-105/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-106/main.tf b/run-all/project-2/project-2-app1-106/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-106/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-106/terragrunt.hcl b/run-all/project-2/project-2-app1-106/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-106/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-107/main.tf b/run-all/project-2/project-2-app1-107/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-107/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-107/terragrunt.hcl b/run-all/project-2/project-2-app1-107/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-107/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-108/main.tf b/run-all/project-2/project-2-app1-108/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-108/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-108/terragrunt.hcl b/run-all/project-2/project-2-app1-108/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-108/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-109/main.tf b/run-all/project-2/project-2-app1-109/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-109/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-109/terragrunt.hcl b/run-all/project-2/project-2-app1-109/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-109/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-110/main.tf b/run-all/project-2/project-2-app1-110/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-110/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-110/terragrunt.hcl b/run-all/project-2/project-2-app1-110/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-110/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-111/main.tf b/run-all/project-2/project-2-app1-111/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-111/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-111/terragrunt.hcl b/run-all/project-2/project-2-app1-111/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-111/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-112/main.tf b/run-all/project-2/project-2-app1-112/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-112/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-112/terragrunt.hcl b/run-all/project-2/project-2-app1-112/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-112/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-113/main.tf b/run-all/project-2/project-2-app1-113/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-113/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-113/terragrunt.hcl b/run-all/project-2/project-2-app1-113/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-113/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-114/main.tf b/run-all/project-2/project-2-app1-114/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-114/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-114/terragrunt.hcl b/run-all/project-2/project-2-app1-114/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-114/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-115/main.tf b/run-all/project-2/project-2-app1-115/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-115/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-115/terragrunt.hcl b/run-all/project-2/project-2-app1-115/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-115/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-116/main.tf b/run-all/project-2/project-2-app1-116/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-116/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-116/terragrunt.hcl b/run-all/project-2/project-2-app1-116/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-116/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-117/main.tf b/run-all/project-2/project-2-app1-117/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-117/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-117/terragrunt.hcl b/run-all/project-2/project-2-app1-117/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-117/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-118/main.tf b/run-all/project-2/project-2-app1-118/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-118/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-118/terragrunt.hcl b/run-all/project-2/project-2-app1-118/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-118/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-119/main.tf b/run-all/project-2/project-2-app1-119/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-119/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-119/terragrunt.hcl b/run-all/project-2/project-2-app1-119/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-119/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-120/main.tf b/run-all/project-2/project-2-app1-120/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-120/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-120/terragrunt.hcl b/run-all/project-2/project-2-app1-120/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-120/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-121/main.tf b/run-all/project-2/project-2-app1-121/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-121/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-121/terragrunt.hcl b/run-all/project-2/project-2-app1-121/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-121/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-122/main.tf b/run-all/project-2/project-2-app1-122/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-122/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-122/terragrunt.hcl b/run-all/project-2/project-2-app1-122/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-122/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-123/main.tf b/run-all/project-2/project-2-app1-123/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-123/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-123/terragrunt.hcl b/run-all/project-2/project-2-app1-123/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-123/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-124/main.tf b/run-all/project-2/project-2-app1-124/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-124/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-124/terragrunt.hcl b/run-all/project-2/project-2-app1-124/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-124/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-125/main.tf b/run-all/project-2/project-2-app1-125/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-125/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-125/terragrunt.hcl b/run-all/project-2/project-2-app1-125/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-125/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-126/main.tf b/run-all/project-2/project-2-app1-126/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-126/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-126/terragrunt.hcl b/run-all/project-2/project-2-app1-126/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-126/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-127/main.tf b/run-all/project-2/project-2-app1-127/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-127/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-127/terragrunt.hcl b/run-all/project-2/project-2-app1-127/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-127/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-128/main.tf b/run-all/project-2/project-2-app1-128/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-128/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-128/terragrunt.hcl b/run-all/project-2/project-2-app1-128/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-128/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-129/main.tf b/run-all/project-2/project-2-app1-129/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-129/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-129/terragrunt.hcl b/run-all/project-2/project-2-app1-129/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-129/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-130/main.tf b/run-all/project-2/project-2-app1-130/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-130/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-130/terragrunt.hcl b/run-all/project-2/project-2-app1-130/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-130/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-131/main.tf b/run-all/project-2/project-2-app1-131/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-131/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-131/terragrunt.hcl b/run-all/project-2/project-2-app1-131/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-131/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-132/main.tf b/run-all/project-2/project-2-app1-132/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-132/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-132/terragrunt.hcl b/run-all/project-2/project-2-app1-132/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-132/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-133/main.tf b/run-all/project-2/project-2-app1-133/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-133/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-133/terragrunt.hcl b/run-all/project-2/project-2-app1-133/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-133/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-134/main.tf b/run-all/project-2/project-2-app1-134/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-134/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-134/terragrunt.hcl b/run-all/project-2/project-2-app1-134/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-134/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-135/main.tf b/run-all/project-2/project-2-app1-135/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-135/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-135/terragrunt.hcl b/run-all/project-2/project-2-app1-135/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-135/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-136/main.tf b/run-all/project-2/project-2-app1-136/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-136/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-136/terragrunt.hcl b/run-all/project-2/project-2-app1-136/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-136/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-137/main.tf b/run-all/project-2/project-2-app1-137/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-137/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-137/terragrunt.hcl b/run-all/project-2/project-2-app1-137/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-137/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-138/main.tf b/run-all/project-2/project-2-app1-138/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-138/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-138/terragrunt.hcl b/run-all/project-2/project-2-app1-138/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-138/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-139/main.tf b/run-all/project-2/project-2-app1-139/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-139/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-139/terragrunt.hcl b/run-all/project-2/project-2-app1-139/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-139/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-140/main.tf b/run-all/project-2/project-2-app1-140/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-140/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-140/terragrunt.hcl b/run-all/project-2/project-2-app1-140/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-140/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-141/main.tf b/run-all/project-2/project-2-app1-141/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-141/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-141/terragrunt.hcl b/run-all/project-2/project-2-app1-141/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-141/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-142/main.tf b/run-all/project-2/project-2-app1-142/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-142/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-142/terragrunt.hcl b/run-all/project-2/project-2-app1-142/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-142/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-143/main.tf b/run-all/project-2/project-2-app1-143/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-143/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-143/terragrunt.hcl b/run-all/project-2/project-2-app1-143/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-143/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-144/main.tf b/run-all/project-2/project-2-app1-144/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-144/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-144/terragrunt.hcl b/run-all/project-2/project-2-app1-144/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-144/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-145/main.tf b/run-all/project-2/project-2-app1-145/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-145/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-145/terragrunt.hcl b/run-all/project-2/project-2-app1-145/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-145/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-146/main.tf b/run-all/project-2/project-2-app1-146/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-146/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-146/terragrunt.hcl b/run-all/project-2/project-2-app1-146/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-146/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-147/main.tf b/run-all/project-2/project-2-app1-147/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-147/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-147/terragrunt.hcl b/run-all/project-2/project-2-app1-147/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-147/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-148/main.tf b/run-all/project-2/project-2-app1-148/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-148/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-148/terragrunt.hcl b/run-all/project-2/project-2-app1-148/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-148/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-149/main.tf b/run-all/project-2/project-2-app1-149/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-149/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-149/terragrunt.hcl b/run-all/project-2/project-2-app1-149/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-149/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-150/main.tf b/run-all/project-2/project-2-app1-150/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-150/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-150/terragrunt.hcl b/run-all/project-2/project-2-app1-150/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-150/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-151/main.tf b/run-all/project-2/project-2-app1-151/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-151/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-151/terragrunt.hcl b/run-all/project-2/project-2-app1-151/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-151/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-152/main.tf b/run-all/project-2/project-2-app1-152/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-152/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-152/terragrunt.hcl b/run-all/project-2/project-2-app1-152/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-152/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-153/main.tf b/run-all/project-2/project-2-app1-153/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-153/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-153/terragrunt.hcl b/run-all/project-2/project-2-app1-153/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-153/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-154/main.tf b/run-all/project-2/project-2-app1-154/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-154/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-154/terragrunt.hcl b/run-all/project-2/project-2-app1-154/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-154/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-155/main.tf b/run-all/project-2/project-2-app1-155/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-155/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-155/terragrunt.hcl b/run-all/project-2/project-2-app1-155/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-155/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-156/main.tf b/run-all/project-2/project-2-app1-156/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-156/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-156/terragrunt.hcl b/run-all/project-2/project-2-app1-156/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-156/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-157/main.tf b/run-all/project-2/project-2-app1-157/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-157/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-157/terragrunt.hcl b/run-all/project-2/project-2-app1-157/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-157/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-158/main.tf b/run-all/project-2/project-2-app1-158/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-158/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-158/terragrunt.hcl b/run-all/project-2/project-2-app1-158/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-158/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-159/main.tf b/run-all/project-2/project-2-app1-159/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-159/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-159/terragrunt.hcl b/run-all/project-2/project-2-app1-159/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-159/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-160/main.tf b/run-all/project-2/project-2-app1-160/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-160/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-160/terragrunt.hcl b/run-all/project-2/project-2-app1-160/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-160/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-161/main.tf b/run-all/project-2/project-2-app1-161/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-161/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-161/terragrunt.hcl b/run-all/project-2/project-2-app1-161/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-161/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-162/main.tf b/run-all/project-2/project-2-app1-162/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-162/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-162/terragrunt.hcl b/run-all/project-2/project-2-app1-162/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-162/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-163/main.tf b/run-all/project-2/project-2-app1-163/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-163/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-163/terragrunt.hcl b/run-all/project-2/project-2-app1-163/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-163/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-164/main.tf b/run-all/project-2/project-2-app1-164/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-164/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-164/terragrunt.hcl b/run-all/project-2/project-2-app1-164/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-164/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-165/main.tf b/run-all/project-2/project-2-app1-165/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-165/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-165/terragrunt.hcl b/run-all/project-2/project-2-app1-165/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-165/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-166/main.tf b/run-all/project-2/project-2-app1-166/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-166/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-166/terragrunt.hcl b/run-all/project-2/project-2-app1-166/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-166/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-167/main.tf b/run-all/project-2/project-2-app1-167/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-167/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-167/terragrunt.hcl b/run-all/project-2/project-2-app1-167/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-167/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-168/main.tf b/run-all/project-2/project-2-app1-168/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-168/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-168/terragrunt.hcl b/run-all/project-2/project-2-app1-168/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-168/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-169/main.tf b/run-all/project-2/project-2-app1-169/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-169/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-169/terragrunt.hcl b/run-all/project-2/project-2-app1-169/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-169/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-170/main.tf b/run-all/project-2/project-2-app1-170/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-170/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-170/terragrunt.hcl b/run-all/project-2/project-2-app1-170/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-170/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-171/main.tf b/run-all/project-2/project-2-app1-171/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-171/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-171/terragrunt.hcl b/run-all/project-2/project-2-app1-171/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-171/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-172/main.tf b/run-all/project-2/project-2-app1-172/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-172/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-172/terragrunt.hcl b/run-all/project-2/project-2-app1-172/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-172/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-173/main.tf b/run-all/project-2/project-2-app1-173/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-173/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-173/terragrunt.hcl b/run-all/project-2/project-2-app1-173/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-173/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-174/main.tf b/run-all/project-2/project-2-app1-174/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-174/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-174/terragrunt.hcl b/run-all/project-2/project-2-app1-174/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-174/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-175/main.tf b/run-all/project-2/project-2-app1-175/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-175/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-175/terragrunt.hcl b/run-all/project-2/project-2-app1-175/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-175/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-176/main.tf b/run-all/project-2/project-2-app1-176/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-176/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-176/terragrunt.hcl b/run-all/project-2/project-2-app1-176/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-176/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-177/main.tf b/run-all/project-2/project-2-app1-177/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-177/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-177/terragrunt.hcl b/run-all/project-2/project-2-app1-177/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-177/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-178/main.tf b/run-all/project-2/project-2-app1-178/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-178/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-178/terragrunt.hcl b/run-all/project-2/project-2-app1-178/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-178/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-179/main.tf b/run-all/project-2/project-2-app1-179/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-179/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-179/terragrunt.hcl b/run-all/project-2/project-2-app1-179/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-179/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-180/main.tf b/run-all/project-2/project-2-app1-180/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-180/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-180/terragrunt.hcl b/run-all/project-2/project-2-app1-180/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-180/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-181/main.tf b/run-all/project-2/project-2-app1-181/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-181/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-181/terragrunt.hcl b/run-all/project-2/project-2-app1-181/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-181/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-182/main.tf b/run-all/project-2/project-2-app1-182/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-182/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-182/terragrunt.hcl b/run-all/project-2/project-2-app1-182/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-182/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-183/main.tf b/run-all/project-2/project-2-app1-183/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-183/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-183/terragrunt.hcl b/run-all/project-2/project-2-app1-183/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-183/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-184/main.tf b/run-all/project-2/project-2-app1-184/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-184/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-184/terragrunt.hcl b/run-all/project-2/project-2-app1-184/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-184/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-185/main.tf b/run-all/project-2/project-2-app1-185/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-185/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-185/terragrunt.hcl b/run-all/project-2/project-2-app1-185/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-185/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-186/main.tf b/run-all/project-2/project-2-app1-186/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-186/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-186/terragrunt.hcl b/run-all/project-2/project-2-app1-186/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-186/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-187/main.tf b/run-all/project-2/project-2-app1-187/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-187/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-187/terragrunt.hcl b/run-all/project-2/project-2-app1-187/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-187/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-188/main.tf b/run-all/project-2/project-2-app1-188/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-188/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-188/terragrunt.hcl b/run-all/project-2/project-2-app1-188/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-188/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-189/main.tf b/run-all/project-2/project-2-app1-189/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-189/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-189/terragrunt.hcl b/run-all/project-2/project-2-app1-189/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-189/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-190/main.tf b/run-all/project-2/project-2-app1-190/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-190/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-190/terragrunt.hcl b/run-all/project-2/project-2-app1-190/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-190/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-191/main.tf b/run-all/project-2/project-2-app1-191/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-191/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-191/terragrunt.hcl b/run-all/project-2/project-2-app1-191/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-191/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-192/main.tf b/run-all/project-2/project-2-app1-192/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-192/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-192/terragrunt.hcl b/run-all/project-2/project-2-app1-192/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-192/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-193/main.tf b/run-all/project-2/project-2-app1-193/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-193/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-193/terragrunt.hcl b/run-all/project-2/project-2-app1-193/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-193/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-194/main.tf b/run-all/project-2/project-2-app1-194/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-194/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-194/terragrunt.hcl b/run-all/project-2/project-2-app1-194/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-194/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-195/main.tf b/run-all/project-2/project-2-app1-195/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-195/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-195/terragrunt.hcl b/run-all/project-2/project-2-app1-195/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-195/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-196/main.tf b/run-all/project-2/project-2-app1-196/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-196/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-196/terragrunt.hcl b/run-all/project-2/project-2-app1-196/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-196/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-197/main.tf b/run-all/project-2/project-2-app1-197/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-197/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-197/terragrunt.hcl b/run-all/project-2/project-2-app1-197/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-197/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-198/main.tf b/run-all/project-2/project-2-app1-198/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-198/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-198/terragrunt.hcl b/run-all/project-2/project-2-app1-198/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-198/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-199/main.tf b/run-all/project-2/project-2-app1-199/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-199/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-199/terragrunt.hcl b/run-all/project-2/project-2-app1-199/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-199/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-200/main.tf b/run-all/project-2/project-2-app1-200/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-200/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-200/terragrunt.hcl b/run-all/project-2/project-2-app1-200/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-200/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-201/main.tf b/run-all/project-2/project-2-app1-201/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-201/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-201/terragrunt.hcl b/run-all/project-2/project-2-app1-201/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-201/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-202/main.tf b/run-all/project-2/project-2-app1-202/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-202/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-202/terragrunt.hcl b/run-all/project-2/project-2-app1-202/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-202/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-203/main.tf b/run-all/project-2/project-2-app1-203/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-203/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-203/terragrunt.hcl b/run-all/project-2/project-2-app1-203/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-203/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-204/main.tf b/run-all/project-2/project-2-app1-204/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-204/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-204/terragrunt.hcl b/run-all/project-2/project-2-app1-204/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-204/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-205/main.tf b/run-all/project-2/project-2-app1-205/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-205/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-205/terragrunt.hcl b/run-all/project-2/project-2-app1-205/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-205/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-206/main.tf b/run-all/project-2/project-2-app1-206/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-206/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-206/terragrunt.hcl b/run-all/project-2/project-2-app1-206/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-206/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-207/main.tf b/run-all/project-2/project-2-app1-207/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-207/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-207/terragrunt.hcl b/run-all/project-2/project-2-app1-207/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-207/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-208/main.tf b/run-all/project-2/project-2-app1-208/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-208/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-208/terragrunt.hcl b/run-all/project-2/project-2-app1-208/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-208/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-209/main.tf b/run-all/project-2/project-2-app1-209/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-209/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-209/terragrunt.hcl b/run-all/project-2/project-2-app1-209/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-209/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-210/main.tf b/run-all/project-2/project-2-app1-210/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-210/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-210/terragrunt.hcl b/run-all/project-2/project-2-app1-210/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-210/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-211/main.tf b/run-all/project-2/project-2-app1-211/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-211/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-211/terragrunt.hcl b/run-all/project-2/project-2-app1-211/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-211/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-212/main.tf b/run-all/project-2/project-2-app1-212/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-212/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-212/terragrunt.hcl b/run-all/project-2/project-2-app1-212/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-212/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-213/main.tf b/run-all/project-2/project-2-app1-213/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-213/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-213/terragrunt.hcl b/run-all/project-2/project-2-app1-213/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-213/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-214/main.tf b/run-all/project-2/project-2-app1-214/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-214/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-214/terragrunt.hcl b/run-all/project-2/project-2-app1-214/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-214/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-215/main.tf b/run-all/project-2/project-2-app1-215/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-215/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-215/terragrunt.hcl b/run-all/project-2/project-2-app1-215/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-215/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-216/main.tf b/run-all/project-2/project-2-app1-216/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-216/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-216/terragrunt.hcl b/run-all/project-2/project-2-app1-216/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-216/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-217/main.tf b/run-all/project-2/project-2-app1-217/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-217/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-217/terragrunt.hcl b/run-all/project-2/project-2-app1-217/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-217/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-218/main.tf b/run-all/project-2/project-2-app1-218/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-218/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-218/terragrunt.hcl b/run-all/project-2/project-2-app1-218/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-218/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-219/main.tf b/run-all/project-2/project-2-app1-219/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-219/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-219/terragrunt.hcl b/run-all/project-2/project-2-app1-219/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-219/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-220/main.tf b/run-all/project-2/project-2-app1-220/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-220/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-220/terragrunt.hcl b/run-all/project-2/project-2-app1-220/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-220/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-221/main.tf b/run-all/project-2/project-2-app1-221/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-221/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-221/terragrunt.hcl b/run-all/project-2/project-2-app1-221/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-221/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-222/main.tf b/run-all/project-2/project-2-app1-222/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-222/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-222/terragrunt.hcl b/run-all/project-2/project-2-app1-222/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-222/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-223/main.tf b/run-all/project-2/project-2-app1-223/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-223/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-223/terragrunt.hcl b/run-all/project-2/project-2-app1-223/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-223/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-224/main.tf b/run-all/project-2/project-2-app1-224/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-224/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-224/terragrunt.hcl b/run-all/project-2/project-2-app1-224/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-224/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-225/main.tf b/run-all/project-2/project-2-app1-225/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-225/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-225/terragrunt.hcl b/run-all/project-2/project-2-app1-225/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-225/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-226/main.tf b/run-all/project-2/project-2-app1-226/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-226/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-226/terragrunt.hcl b/run-all/project-2/project-2-app1-226/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-226/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-227/main.tf b/run-all/project-2/project-2-app1-227/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-227/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-227/terragrunt.hcl b/run-all/project-2/project-2-app1-227/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-227/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-228/main.tf b/run-all/project-2/project-2-app1-228/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-228/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-228/terragrunt.hcl b/run-all/project-2/project-2-app1-228/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-228/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-229/main.tf b/run-all/project-2/project-2-app1-229/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-229/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-229/terragrunt.hcl b/run-all/project-2/project-2-app1-229/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-229/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-230/main.tf b/run-all/project-2/project-2-app1-230/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-230/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-230/terragrunt.hcl b/run-all/project-2/project-2-app1-230/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-230/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-231/main.tf b/run-all/project-2/project-2-app1-231/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-231/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-231/terragrunt.hcl b/run-all/project-2/project-2-app1-231/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-231/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-232/main.tf b/run-all/project-2/project-2-app1-232/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-232/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-232/terragrunt.hcl b/run-all/project-2/project-2-app1-232/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-232/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-233/main.tf b/run-all/project-2/project-2-app1-233/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-233/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-233/terragrunt.hcl b/run-all/project-2/project-2-app1-233/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-233/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-234/main.tf b/run-all/project-2/project-2-app1-234/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-234/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-234/terragrunt.hcl b/run-all/project-2/project-2-app1-234/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-234/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-235/main.tf b/run-all/project-2/project-2-app1-235/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-235/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-235/terragrunt.hcl b/run-all/project-2/project-2-app1-235/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-235/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-236/main.tf b/run-all/project-2/project-2-app1-236/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-236/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-236/terragrunt.hcl b/run-all/project-2/project-2-app1-236/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-236/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-237/main.tf b/run-all/project-2/project-2-app1-237/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-237/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-237/terragrunt.hcl b/run-all/project-2/project-2-app1-237/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-237/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-238/main.tf b/run-all/project-2/project-2-app1-238/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-238/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-238/terragrunt.hcl b/run-all/project-2/project-2-app1-238/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-238/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-239/main.tf b/run-all/project-2/project-2-app1-239/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-239/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-239/terragrunt.hcl b/run-all/project-2/project-2-app1-239/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-239/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-240/main.tf b/run-all/project-2/project-2-app1-240/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-240/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-240/terragrunt.hcl b/run-all/project-2/project-2-app1-240/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-240/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-241/main.tf b/run-all/project-2/project-2-app1-241/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-241/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-241/terragrunt.hcl b/run-all/project-2/project-2-app1-241/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-241/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-242/main.tf b/run-all/project-2/project-2-app1-242/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-242/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-242/terragrunt.hcl b/run-all/project-2/project-2-app1-242/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-242/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-243/main.tf b/run-all/project-2/project-2-app1-243/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-243/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-243/terragrunt.hcl b/run-all/project-2/project-2-app1-243/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-243/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-244/main.tf b/run-all/project-2/project-2-app1-244/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-244/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-244/terragrunt.hcl b/run-all/project-2/project-2-app1-244/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-244/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-245/main.tf b/run-all/project-2/project-2-app1-245/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-245/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-245/terragrunt.hcl b/run-all/project-2/project-2-app1-245/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-245/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-246/main.tf b/run-all/project-2/project-2-app1-246/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-246/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-246/terragrunt.hcl b/run-all/project-2/project-2-app1-246/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-246/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-247/main.tf b/run-all/project-2/project-2-app1-247/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-247/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-247/terragrunt.hcl b/run-all/project-2/project-2-app1-247/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-247/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-248/main.tf b/run-all/project-2/project-2-app1-248/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-248/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-248/terragrunt.hcl b/run-all/project-2/project-2-app1-248/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-248/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-249/main.tf b/run-all/project-2/project-2-app1-249/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-249/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-249/terragrunt.hcl b/run-all/project-2/project-2-app1-249/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-249/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-250/main.tf b/run-all/project-2/project-2-app1-250/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-250/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-250/terragrunt.hcl b/run-all/project-2/project-2-app1-250/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-250/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-251/main.tf b/run-all/project-2/project-2-app1-251/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-251/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-251/terragrunt.hcl b/run-all/project-2/project-2-app1-251/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-251/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-252/main.tf b/run-all/project-2/project-2-app1-252/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-252/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-252/terragrunt.hcl b/run-all/project-2/project-2-app1-252/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-252/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-253/main.tf b/run-all/project-2/project-2-app1-253/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-253/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-253/terragrunt.hcl b/run-all/project-2/project-2-app1-253/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-253/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-254/main.tf b/run-all/project-2/project-2-app1-254/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-254/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-254/terragrunt.hcl b/run-all/project-2/project-2-app1-254/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-254/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-255/main.tf b/run-all/project-2/project-2-app1-255/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-255/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-255/terragrunt.hcl b/run-all/project-2/project-2-app1-255/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-255/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-256/main.tf b/run-all/project-2/project-2-app1-256/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-256/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-256/terragrunt.hcl b/run-all/project-2/project-2-app1-256/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-256/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-257/main.tf b/run-all/project-2/project-2-app1-257/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-257/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-257/terragrunt.hcl b/run-all/project-2/project-2-app1-257/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-257/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-258/main.tf b/run-all/project-2/project-2-app1-258/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-258/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-258/terragrunt.hcl b/run-all/project-2/project-2-app1-258/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-258/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-259/main.tf b/run-all/project-2/project-2-app1-259/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-259/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-259/terragrunt.hcl b/run-all/project-2/project-2-app1-259/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-259/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-260/main.tf b/run-all/project-2/project-2-app1-260/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-260/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-260/terragrunt.hcl b/run-all/project-2/project-2-app1-260/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-260/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-261/main.tf b/run-all/project-2/project-2-app1-261/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-261/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-261/terragrunt.hcl b/run-all/project-2/project-2-app1-261/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-261/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-262/main.tf b/run-all/project-2/project-2-app1-262/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-262/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-262/terragrunt.hcl b/run-all/project-2/project-2-app1-262/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-262/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-263/main.tf b/run-all/project-2/project-2-app1-263/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-263/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-263/terragrunt.hcl b/run-all/project-2/project-2-app1-263/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-263/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-264/main.tf b/run-all/project-2/project-2-app1-264/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-264/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-264/terragrunt.hcl b/run-all/project-2/project-2-app1-264/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-264/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-265/main.tf b/run-all/project-2/project-2-app1-265/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-265/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-265/terragrunt.hcl b/run-all/project-2/project-2-app1-265/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-265/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-266/main.tf b/run-all/project-2/project-2-app1-266/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-266/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-266/terragrunt.hcl b/run-all/project-2/project-2-app1-266/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-266/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-267/main.tf b/run-all/project-2/project-2-app1-267/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-267/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-267/terragrunt.hcl b/run-all/project-2/project-2-app1-267/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-267/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-268/main.tf b/run-all/project-2/project-2-app1-268/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-268/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-268/terragrunt.hcl b/run-all/project-2/project-2-app1-268/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-268/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-269/main.tf b/run-all/project-2/project-2-app1-269/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-269/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-269/terragrunt.hcl b/run-all/project-2/project-2-app1-269/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-269/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-270/main.tf b/run-all/project-2/project-2-app1-270/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-270/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-270/terragrunt.hcl b/run-all/project-2/project-2-app1-270/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-270/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-271/main.tf b/run-all/project-2/project-2-app1-271/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-271/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-271/terragrunt.hcl b/run-all/project-2/project-2-app1-271/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-271/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-272/main.tf b/run-all/project-2/project-2-app1-272/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-272/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-272/terragrunt.hcl b/run-all/project-2/project-2-app1-272/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-272/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-273/main.tf b/run-all/project-2/project-2-app1-273/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-273/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-273/terragrunt.hcl b/run-all/project-2/project-2-app1-273/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-273/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-274/main.tf b/run-all/project-2/project-2-app1-274/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-274/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-274/terragrunt.hcl b/run-all/project-2/project-2-app1-274/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-274/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-275/main.tf b/run-all/project-2/project-2-app1-275/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-275/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-275/terragrunt.hcl b/run-all/project-2/project-2-app1-275/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-275/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-276/main.tf b/run-all/project-2/project-2-app1-276/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-276/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-276/terragrunt.hcl b/run-all/project-2/project-2-app1-276/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-276/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-277/main.tf b/run-all/project-2/project-2-app1-277/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-277/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-277/terragrunt.hcl b/run-all/project-2/project-2-app1-277/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-277/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-278/main.tf b/run-all/project-2/project-2-app1-278/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-278/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-278/terragrunt.hcl b/run-all/project-2/project-2-app1-278/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-278/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-279/main.tf b/run-all/project-2/project-2-app1-279/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-279/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-279/terragrunt.hcl b/run-all/project-2/project-2-app1-279/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-279/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-280/main.tf b/run-all/project-2/project-2-app1-280/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-280/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-280/terragrunt.hcl b/run-all/project-2/project-2-app1-280/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-280/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-281/main.tf b/run-all/project-2/project-2-app1-281/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-281/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-281/terragrunt.hcl b/run-all/project-2/project-2-app1-281/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-281/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-282/main.tf b/run-all/project-2/project-2-app1-282/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-282/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-282/terragrunt.hcl b/run-all/project-2/project-2-app1-282/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-282/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-283/main.tf b/run-all/project-2/project-2-app1-283/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-283/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-283/terragrunt.hcl b/run-all/project-2/project-2-app1-283/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-283/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-284/main.tf b/run-all/project-2/project-2-app1-284/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-284/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-284/terragrunt.hcl b/run-all/project-2/project-2-app1-284/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-284/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-285/main.tf b/run-all/project-2/project-2-app1-285/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-285/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-285/terragrunt.hcl b/run-all/project-2/project-2-app1-285/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-285/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-286/main.tf b/run-all/project-2/project-2-app1-286/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-286/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-286/terragrunt.hcl b/run-all/project-2/project-2-app1-286/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-286/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-287/main.tf b/run-all/project-2/project-2-app1-287/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-287/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-287/terragrunt.hcl b/run-all/project-2/project-2-app1-287/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-287/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-288/main.tf b/run-all/project-2/project-2-app1-288/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-288/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-288/terragrunt.hcl b/run-all/project-2/project-2-app1-288/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-288/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-289/main.tf b/run-all/project-2/project-2-app1-289/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-289/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-289/terragrunt.hcl b/run-all/project-2/project-2-app1-289/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-289/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-290/main.tf b/run-all/project-2/project-2-app1-290/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-290/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-290/terragrunt.hcl b/run-all/project-2/project-2-app1-290/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-290/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-291/main.tf b/run-all/project-2/project-2-app1-291/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-291/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-291/terragrunt.hcl b/run-all/project-2/project-2-app1-291/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-291/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-292/main.tf b/run-all/project-2/project-2-app1-292/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-292/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-292/terragrunt.hcl b/run-all/project-2/project-2-app1-292/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-292/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-293/main.tf b/run-all/project-2/project-2-app1-293/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-293/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-293/terragrunt.hcl b/run-all/project-2/project-2-app1-293/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-293/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-294/main.tf b/run-all/project-2/project-2-app1-294/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-294/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-294/terragrunt.hcl b/run-all/project-2/project-2-app1-294/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-294/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-295/main.tf b/run-all/project-2/project-2-app1-295/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-295/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-295/terragrunt.hcl b/run-all/project-2/project-2-app1-295/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-295/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-296/main.tf b/run-all/project-2/project-2-app1-296/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-296/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-296/terragrunt.hcl b/run-all/project-2/project-2-app1-296/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-296/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-297/main.tf b/run-all/project-2/project-2-app1-297/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-297/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-297/terragrunt.hcl b/run-all/project-2/project-2-app1-297/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-297/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-298/main.tf b/run-all/project-2/project-2-app1-298/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-298/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-298/terragrunt.hcl b/run-all/project-2/project-2-app1-298/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-298/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-299/main.tf b/run-all/project-2/project-2-app1-299/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-299/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-299/terragrunt.hcl b/run-all/project-2/project-2-app1-299/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-299/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-300/main.tf b/run-all/project-2/project-2-app1-300/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-300/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-300/terragrunt.hcl b/run-all/project-2/project-2-app1-300/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-300/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-301/main.tf b/run-all/project-2/project-2-app1-301/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-301/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-301/terragrunt.hcl b/run-all/project-2/project-2-app1-301/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-301/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-302/main.tf b/run-all/project-2/project-2-app1-302/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-302/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-302/terragrunt.hcl b/run-all/project-2/project-2-app1-302/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-302/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-303/main.tf b/run-all/project-2/project-2-app1-303/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-303/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-303/terragrunt.hcl b/run-all/project-2/project-2-app1-303/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-303/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-304/main.tf b/run-all/project-2/project-2-app1-304/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-304/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-304/terragrunt.hcl b/run-all/project-2/project-2-app1-304/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-304/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-305/main.tf b/run-all/project-2/project-2-app1-305/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-305/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-305/terragrunt.hcl b/run-all/project-2/project-2-app1-305/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-305/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-306/main.tf b/run-all/project-2/project-2-app1-306/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-306/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-306/terragrunt.hcl b/run-all/project-2/project-2-app1-306/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-306/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-307/main.tf b/run-all/project-2/project-2-app1-307/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-307/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-307/terragrunt.hcl b/run-all/project-2/project-2-app1-307/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-307/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-308/main.tf b/run-all/project-2/project-2-app1-308/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-308/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-308/terragrunt.hcl b/run-all/project-2/project-2-app1-308/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-308/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-309/main.tf b/run-all/project-2/project-2-app1-309/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-309/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-309/terragrunt.hcl b/run-all/project-2/project-2-app1-309/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-309/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-310/main.tf b/run-all/project-2/project-2-app1-310/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-310/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-310/terragrunt.hcl b/run-all/project-2/project-2-app1-310/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-310/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-311/main.tf b/run-all/project-2/project-2-app1-311/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-311/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-311/terragrunt.hcl b/run-all/project-2/project-2-app1-311/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-311/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-312/main.tf b/run-all/project-2/project-2-app1-312/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-312/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-312/terragrunt.hcl b/run-all/project-2/project-2-app1-312/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-312/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-313/main.tf b/run-all/project-2/project-2-app1-313/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-313/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-313/terragrunt.hcl b/run-all/project-2/project-2-app1-313/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-313/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-314/main.tf b/run-all/project-2/project-2-app1-314/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-314/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-314/terragrunt.hcl b/run-all/project-2/project-2-app1-314/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-314/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-315/main.tf b/run-all/project-2/project-2-app1-315/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-315/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-315/terragrunt.hcl b/run-all/project-2/project-2-app1-315/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-315/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-316/main.tf b/run-all/project-2/project-2-app1-316/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-316/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-316/terragrunt.hcl b/run-all/project-2/project-2-app1-316/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-316/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-317/main.tf b/run-all/project-2/project-2-app1-317/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-317/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-317/terragrunt.hcl b/run-all/project-2/project-2-app1-317/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-317/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-318/main.tf b/run-all/project-2/project-2-app1-318/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-318/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-318/terragrunt.hcl b/run-all/project-2/project-2-app1-318/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-318/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-319/main.tf b/run-all/project-2/project-2-app1-319/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-319/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-319/terragrunt.hcl b/run-all/project-2/project-2-app1-319/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-319/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-320/main.tf b/run-all/project-2/project-2-app1-320/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-320/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-320/terragrunt.hcl b/run-all/project-2/project-2-app1-320/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-320/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-321/main.tf b/run-all/project-2/project-2-app1-321/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-321/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-321/terragrunt.hcl b/run-all/project-2/project-2-app1-321/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-321/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-322/main.tf b/run-all/project-2/project-2-app1-322/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-322/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-322/terragrunt.hcl b/run-all/project-2/project-2-app1-322/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-322/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-323/main.tf b/run-all/project-2/project-2-app1-323/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-323/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-323/terragrunt.hcl b/run-all/project-2/project-2-app1-323/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-323/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-324/main.tf b/run-all/project-2/project-2-app1-324/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-324/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-324/terragrunt.hcl b/run-all/project-2/project-2-app1-324/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-324/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-325/main.tf b/run-all/project-2/project-2-app1-325/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-325/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-325/terragrunt.hcl b/run-all/project-2/project-2-app1-325/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-325/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-326/main.tf b/run-all/project-2/project-2-app1-326/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-326/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-326/terragrunt.hcl b/run-all/project-2/project-2-app1-326/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-326/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-327/main.tf b/run-all/project-2/project-2-app1-327/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-327/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-327/terragrunt.hcl b/run-all/project-2/project-2-app1-327/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-327/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-328/main.tf b/run-all/project-2/project-2-app1-328/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-328/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-328/terragrunt.hcl b/run-all/project-2/project-2-app1-328/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-328/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-329/main.tf b/run-all/project-2/project-2-app1-329/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-329/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-329/terragrunt.hcl b/run-all/project-2/project-2-app1-329/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-329/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-330/main.tf b/run-all/project-2/project-2-app1-330/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-330/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-330/terragrunt.hcl b/run-all/project-2/project-2-app1-330/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-330/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-331/main.tf b/run-all/project-2/project-2-app1-331/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-331/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-331/terragrunt.hcl b/run-all/project-2/project-2-app1-331/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-331/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-332/main.tf b/run-all/project-2/project-2-app1-332/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-332/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-332/terragrunt.hcl b/run-all/project-2/project-2-app1-332/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-332/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-333/main.tf b/run-all/project-2/project-2-app1-333/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-333/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-333/terragrunt.hcl b/run-all/project-2/project-2-app1-333/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-333/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-334/main.tf b/run-all/project-2/project-2-app1-334/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-334/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-334/terragrunt.hcl b/run-all/project-2/project-2-app1-334/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-334/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-335/main.tf b/run-all/project-2/project-2-app1-335/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-335/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-335/terragrunt.hcl b/run-all/project-2/project-2-app1-335/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-335/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-336/main.tf b/run-all/project-2/project-2-app1-336/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-336/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-336/terragrunt.hcl b/run-all/project-2/project-2-app1-336/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-336/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-337/main.tf b/run-all/project-2/project-2-app1-337/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-337/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-337/terragrunt.hcl b/run-all/project-2/project-2-app1-337/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-337/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-338/main.tf b/run-all/project-2/project-2-app1-338/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-338/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-338/terragrunt.hcl b/run-all/project-2/project-2-app1-338/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-338/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-339/main.tf b/run-all/project-2/project-2-app1-339/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-339/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-339/terragrunt.hcl b/run-all/project-2/project-2-app1-339/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-339/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-340/main.tf b/run-all/project-2/project-2-app1-340/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-340/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-340/terragrunt.hcl b/run-all/project-2/project-2-app1-340/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-340/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-341/main.tf b/run-all/project-2/project-2-app1-341/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-341/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-341/terragrunt.hcl b/run-all/project-2/project-2-app1-341/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-341/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-342/main.tf b/run-all/project-2/project-2-app1-342/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-342/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-342/terragrunt.hcl b/run-all/project-2/project-2-app1-342/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-342/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-343/main.tf b/run-all/project-2/project-2-app1-343/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-343/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-343/terragrunt.hcl b/run-all/project-2/project-2-app1-343/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-343/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-344/main.tf b/run-all/project-2/project-2-app1-344/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-344/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-344/terragrunt.hcl b/run-all/project-2/project-2-app1-344/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-344/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-345/main.tf b/run-all/project-2/project-2-app1-345/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-345/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-345/terragrunt.hcl b/run-all/project-2/project-2-app1-345/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-345/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-346/main.tf b/run-all/project-2/project-2-app1-346/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-346/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-346/terragrunt.hcl b/run-all/project-2/project-2-app1-346/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-346/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-347/main.tf b/run-all/project-2/project-2-app1-347/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-347/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-347/terragrunt.hcl b/run-all/project-2/project-2-app1-347/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-347/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-348/main.tf b/run-all/project-2/project-2-app1-348/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-348/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-348/terragrunt.hcl b/run-all/project-2/project-2-app1-348/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-348/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-349/main.tf b/run-all/project-2/project-2-app1-349/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-349/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-349/terragrunt.hcl b/run-all/project-2/project-2-app1-349/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-349/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-350/main.tf b/run-all/project-2/project-2-app1-350/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-350/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-350/terragrunt.hcl b/run-all/project-2/project-2-app1-350/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-350/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-351/main.tf b/run-all/project-2/project-2-app1-351/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-351/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-351/terragrunt.hcl b/run-all/project-2/project-2-app1-351/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-351/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-352/main.tf b/run-all/project-2/project-2-app1-352/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-352/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-352/terragrunt.hcl b/run-all/project-2/project-2-app1-352/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-352/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-353/main.tf b/run-all/project-2/project-2-app1-353/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-353/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-353/terragrunt.hcl b/run-all/project-2/project-2-app1-353/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-353/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-354/main.tf b/run-all/project-2/project-2-app1-354/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-354/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-354/terragrunt.hcl b/run-all/project-2/project-2-app1-354/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-354/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-355/main.tf b/run-all/project-2/project-2-app1-355/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-355/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-355/terragrunt.hcl b/run-all/project-2/project-2-app1-355/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-355/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-356/main.tf b/run-all/project-2/project-2-app1-356/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-356/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-356/terragrunt.hcl b/run-all/project-2/project-2-app1-356/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-356/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-357/main.tf b/run-all/project-2/project-2-app1-357/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-357/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-357/terragrunt.hcl b/run-all/project-2/project-2-app1-357/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-357/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-358/main.tf b/run-all/project-2/project-2-app1-358/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-358/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-358/terragrunt.hcl b/run-all/project-2/project-2-app1-358/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-358/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-359/main.tf b/run-all/project-2/project-2-app1-359/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-359/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-359/terragrunt.hcl b/run-all/project-2/project-2-app1-359/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-359/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-360/main.tf b/run-all/project-2/project-2-app1-360/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-360/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-360/terragrunt.hcl b/run-all/project-2/project-2-app1-360/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-360/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-361/main.tf b/run-all/project-2/project-2-app1-361/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-361/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-361/terragrunt.hcl b/run-all/project-2/project-2-app1-361/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-361/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-362/main.tf b/run-all/project-2/project-2-app1-362/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-362/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-362/terragrunt.hcl b/run-all/project-2/project-2-app1-362/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-362/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-363/main.tf b/run-all/project-2/project-2-app1-363/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-363/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-363/terragrunt.hcl b/run-all/project-2/project-2-app1-363/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-363/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-364/main.tf b/run-all/project-2/project-2-app1-364/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-364/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-364/terragrunt.hcl b/run-all/project-2/project-2-app1-364/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-364/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-365/main.tf b/run-all/project-2/project-2-app1-365/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-365/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-365/terragrunt.hcl b/run-all/project-2/project-2-app1-365/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-365/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-366/main.tf b/run-all/project-2/project-2-app1-366/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-366/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-366/terragrunt.hcl b/run-all/project-2/project-2-app1-366/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-366/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-367/main.tf b/run-all/project-2/project-2-app1-367/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-367/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-367/terragrunt.hcl b/run-all/project-2/project-2-app1-367/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-367/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-368/main.tf b/run-all/project-2/project-2-app1-368/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-368/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-368/terragrunt.hcl b/run-all/project-2/project-2-app1-368/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-368/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-369/main.tf b/run-all/project-2/project-2-app1-369/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-369/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-369/terragrunt.hcl b/run-all/project-2/project-2-app1-369/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-369/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-370/main.tf b/run-all/project-2/project-2-app1-370/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-370/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-370/terragrunt.hcl b/run-all/project-2/project-2-app1-370/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-370/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-371/main.tf b/run-all/project-2/project-2-app1-371/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-371/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-371/terragrunt.hcl b/run-all/project-2/project-2-app1-371/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-371/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-372/main.tf b/run-all/project-2/project-2-app1-372/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-372/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-372/terragrunt.hcl b/run-all/project-2/project-2-app1-372/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-372/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-373/main.tf b/run-all/project-2/project-2-app1-373/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-373/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-373/terragrunt.hcl b/run-all/project-2/project-2-app1-373/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-373/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-374/main.tf b/run-all/project-2/project-2-app1-374/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-374/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-374/terragrunt.hcl b/run-all/project-2/project-2-app1-374/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-374/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-375/main.tf b/run-all/project-2/project-2-app1-375/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-375/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-375/terragrunt.hcl b/run-all/project-2/project-2-app1-375/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-375/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-376/main.tf b/run-all/project-2/project-2-app1-376/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-376/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-376/terragrunt.hcl b/run-all/project-2/project-2-app1-376/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-376/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-377/main.tf b/run-all/project-2/project-2-app1-377/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-377/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-377/terragrunt.hcl b/run-all/project-2/project-2-app1-377/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-377/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-378/main.tf b/run-all/project-2/project-2-app1-378/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-378/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-378/terragrunt.hcl b/run-all/project-2/project-2-app1-378/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-378/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-379/main.tf b/run-all/project-2/project-2-app1-379/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-379/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-379/terragrunt.hcl b/run-all/project-2/project-2-app1-379/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-379/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-380/main.tf b/run-all/project-2/project-2-app1-380/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-380/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-380/terragrunt.hcl b/run-all/project-2/project-2-app1-380/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-380/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-381/main.tf b/run-all/project-2/project-2-app1-381/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-381/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-381/terragrunt.hcl b/run-all/project-2/project-2-app1-381/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-381/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-382/main.tf b/run-all/project-2/project-2-app1-382/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-382/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-382/terragrunt.hcl b/run-all/project-2/project-2-app1-382/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-382/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-383/main.tf b/run-all/project-2/project-2-app1-383/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-383/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-383/terragrunt.hcl b/run-all/project-2/project-2-app1-383/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-383/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-384/main.tf b/run-all/project-2/project-2-app1-384/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-384/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-384/terragrunt.hcl b/run-all/project-2/project-2-app1-384/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-384/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-385/main.tf b/run-all/project-2/project-2-app1-385/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-385/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-385/terragrunt.hcl b/run-all/project-2/project-2-app1-385/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-385/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-386/main.tf b/run-all/project-2/project-2-app1-386/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-386/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-386/terragrunt.hcl b/run-all/project-2/project-2-app1-386/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-386/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-387/main.tf b/run-all/project-2/project-2-app1-387/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-387/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-387/terragrunt.hcl b/run-all/project-2/project-2-app1-387/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-387/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-388/main.tf b/run-all/project-2/project-2-app1-388/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-388/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-388/terragrunt.hcl b/run-all/project-2/project-2-app1-388/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-388/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-389/main.tf b/run-all/project-2/project-2-app1-389/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-389/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-389/terragrunt.hcl b/run-all/project-2/project-2-app1-389/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-389/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-390/main.tf b/run-all/project-2/project-2-app1-390/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-390/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-390/terragrunt.hcl b/run-all/project-2/project-2-app1-390/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-390/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-391/main.tf b/run-all/project-2/project-2-app1-391/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-391/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-391/terragrunt.hcl b/run-all/project-2/project-2-app1-391/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-391/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-392/main.tf b/run-all/project-2/project-2-app1-392/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-392/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-392/terragrunt.hcl b/run-all/project-2/project-2-app1-392/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-392/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-393/main.tf b/run-all/project-2/project-2-app1-393/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-393/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-393/terragrunt.hcl b/run-all/project-2/project-2-app1-393/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-393/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-394/main.tf b/run-all/project-2/project-2-app1-394/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-394/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-394/terragrunt.hcl b/run-all/project-2/project-2-app1-394/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-394/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-395/main.tf b/run-all/project-2/project-2-app1-395/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-395/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-395/terragrunt.hcl b/run-all/project-2/project-2-app1-395/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-395/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-396/main.tf b/run-all/project-2/project-2-app1-396/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-396/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-396/terragrunt.hcl b/run-all/project-2/project-2-app1-396/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-396/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-397/main.tf b/run-all/project-2/project-2-app1-397/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-397/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-397/terragrunt.hcl b/run-all/project-2/project-2-app1-397/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-397/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-398/main.tf b/run-all/project-2/project-2-app1-398/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-398/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-398/terragrunt.hcl b/run-all/project-2/project-2-app1-398/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-398/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-399/main.tf b/run-all/project-2/project-2-app1-399/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-399/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-399/terragrunt.hcl b/run-all/project-2/project-2-app1-399/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-399/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -} diff --git a/run-all/project-2/project-2-app1-400/main.tf b/run-all/project-2/project-2-app1-400/main.tf deleted file mode 100644 index cdeb8cc..0000000 --- a/run-all/project-2/project-2-app1-400/main.tf +++ /dev/null @@ -1,4 +0,0 @@ -resource "local_file" "file" { - content = " file" - filename = "${path.module}/cluster_name.txt" -} diff --git a/run-all/project-2/project-2-app1-400/terragrunt.hcl b/run-all/project-2/project-2-app1-400/terragrunt.hcl deleted file mode 100644 index 91a5dda..0000000 --- a/run-all/project-2/project-2-app1-400/terragrunt.hcl +++ /dev/null @@ -1,12 +0,0 @@ -locals { - repo_root = get_path_to_repo_root() - log_print0 = run_cmd("echo", "log_print 2 0") - log_print = run_cmd("echo", get_path_to_repo_root()) - log_print9 = run_cmd("echo", "log_print 2 0") -} - -inputs = { - str1 = "46521694" - str2 = 123 - -}