File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33# - CIRCLECI_API_KEY
44#
55
6+ AWS_ACCESS_KEY_ID := $(shell aws secretsmanager get-secret-value --secret-id=ci-user-aws-keys${randomSeed} | jq -r '.SecretString'| jq -r .access_key_id)
7+ AWS_SECRET_ACCESS_KEY := $(shell aws secretsmanager get-secret-value --secret-id=ci-user-aws-keys${randomSeed} | jq -r '.SecretString'| jq -r .secret_key)
68GITHUB_ORG := $(shell echo ${REPOSITORY} | cut -d "/" -f 2)
79GITHUB_REPO := $(shell echo ${REPOSITORY} | cut -d "/" -f 3)
810
Original file line number Diff line number Diff line change @@ -39,3 +39,6 @@ parameters:
3939 - field : stagingBackendSubdomain
4040 label : Staging Backend Host Name (e.g. api.)
4141 default : api.
42+ - field : randomSeed
43+ label : Random seed that will be shared between projects to come up with deterministic resource names
44+ execute : uuidgen
You can’t perform that action at this time.
0 commit comments