mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
6c394abb32
* test: add make commands and dependencies Signed-off-by: Francisco <francisco.moral@suse.com> * fix: fix issue on logic for using external dbs and dependencies Signed-off-by: Francisco <francisco.moral@suse.com> --------- Signed-off-by: Francisco <francisco.moral@suse.com>
13 lines
332 B
Makefile
13 lines
332 B
Makefile
SHELL := /bin/bash
|
|
|
|
LOCAL_TFVARS_PATH := modules/k3scluster/config/local.tfvars
|
|
|
|
ifeq ($(wildcard ${LOCAL_TFVARS_PATH}),)
|
|
RESOURCE_NAME :=
|
|
else
|
|
export RESOURCE_NAME := $(shell sed -n 's/resource_name *= *"\([^"]*\)"/\1/p' ${LOCAL_TFVARS_PATH})
|
|
endif
|
|
|
|
export ACCESS_KEY_LOCAL
|
|
export AWS_ACCESS_KEY_ID
|
|
export AWS_SECRET_ACCESS_KEY |