Compare commits

..

1 Commits

Author SHA1 Message Date
ce8483f9fa feat: initial setup
All checks were successful
Build / build (pull_request) Successful in 39s
- manage nomad jobs
- create makefile
- create gitignore
- manage terragrunt environments
- add build/deploy jobs
2024-12-28 22:37:54 +11:00
3 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Packages - name: Install Terraform/Terragrunt
run: | run: |
dnf install terraform terragrunt vault jq -y dnf install terraform terragrunt vault jq -y

View File

@ -25,7 +25,7 @@ jobs:
name: plans name: plans
path: /workspace/unkin/terraform-nomad/plans path: /workspace/unkin/terraform-nomad/plans
- name: Install Packages - name: Install Terraform/Terragrunt
run: | run: |
dnf install terraform terragrunt vault jq -y dnf install terraform terragrunt vault jq -y

View File

@ -21,6 +21,7 @@ clean:
init: init:
$(call vault_env) && \ $(call vault_env) && \
env | sort && \
terragrunt --terragrunt-working-dir $(ENV_DIR) init terragrunt --terragrunt-working-dir $(ENV_DIR) init
plan: init plan: init