Skip to content

Commit e6f58a1

Browse files
committed
Add aws creds back in to makefile
1 parent 7a03980 commit e6f58a1

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
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)
68
GITHUB_ORG := $(shell echo ${REPOSITORY} | cut -d "/" -f 2)
79
GITHUB_REPO := $(shell echo ${REPOSITORY} | cut -d "/" -f 3)
810

zero-module.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)