mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Merge pull request #12804 from chrismeyersfsu/fix-test_non_destructive_makefile
allow env variable override of creds file
This commit is contained in:
@@ -6,7 +6,7 @@ ifndef CLOUD_RESOURCE_PREFIX
|
|||||||
CLOUD_RESOURCE_PREFIX := $(shell python -c "import string,random; print('ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(8)));")
|
CLOUD_RESOURCE_PREFIX := $(shell python -c "import string,random; print('ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(8)));")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CREDENTIALS_FILE = credentials.yml
|
CREDENTIALS_FILE ?= credentials.yml
|
||||||
# If credentials.yml exists, use it
|
# If credentials.yml exists, use it
|
||||||
ifneq ("$(wildcard $(CREDENTIALS_FILE))","")
|
ifneq ("$(wildcard $(CREDENTIALS_FILE))","")
|
||||||
CREDENTIALS_ARG = -e @$(CREDENTIALS_FILE)
|
CREDENTIALS_ARG = -e @$(CREDENTIALS_FILE)
|
||||||
|
|||||||
Reference in New Issue
Block a user