summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlan Rominger <arominge@redhat.com>2023-06-26 21:48:58 +0200
committerGitHub <noreply@github.com>2023-06-26 21:48:58 +0200
commit974465e46ae9090d1fcb204ea67b4079ae74c980 (patch)
tree13a268360891d92aa28cbe5cf2062c3a9fc784d2 /Makefile
parentTry to fix CI by adding dropped coreapi lib (#14165) (diff)
downloadawx-974465e46ae9090d1fcb204ea67b4079ae74c980.tar.xz
awx-974465e46ae9090d1fcb204ea67b4079ae74c980.zip
Add hashivault option as docker-compose optional container (#14161)
Co-authored-by: Sarabraj Singh <singh.sarabraj@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d24a6dc976..2add3dafc3 100644
--- a/Makefile
+++ b/Makefile
@@ -37,6 +37,8 @@ SPLUNK ?= false
PROMETHEUS ?= false
# If set to true docker-compose will also start a grafana instance
GRAFANA ?= false
+# If set to true docker-compose will also start a hashicorp vault instance
+VAULT ?= false
# If set to true docker-compose will also start a tacacs+ instance
TACACS ?= false
@@ -525,6 +527,7 @@ docker-compose-sources: .git/hooks/pre-commit
-e enable_splunk=$(SPLUNK) \
-e enable_prometheus=$(PROMETHEUS) \
-e enable_grafana=$(GRAFANA) \
+ -e enable_vault=$(VAULT) \
-e enable_tacacs=$(TACACS) \
$(EXTRA_SOURCES_ANSIBLE_OPTS)