From 43051235bd12c5174728ea975a9fdbb9c0acffc8 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 14 Jul 2024 21:25:10 +0100 Subject: [PATCH] Add command to get ansible facts --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 13613c7..005fc37 100644 --- a/justfile +++ b/justfile @@ -10,6 +10,9 @@ ansible-setup: pip install -r ansible/dev-requirements.txt cd ansible/ && ansible-galaxy install -r galaxy-requirements.yml --force +@ansible-facts HOST: + cd ansible/ && ansible -m setup {{ HOST }} --vault-password-file=vault-pass.sh + # Run terraform with required environment terraform +ARGS: #!/usr/bin/env bash