You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RE ${INSTALLATION_ID}-${STAGE}, you have a chicken and egg problem as described upon #4 (comment)
I agree userId and userApiKey is bad, but since these couldn't be created programatically (I asked you several times about this), I have no choice but to hard code it. Yes it could go into a parameter store, but that doesn't really help. It only adds a level of indirection.
The problems:
Incorrect AWS profile:
In the file test.sh
The code reads:
apienroll/test.sh
Line 3 in 6cfcb24
This IS WRONG: we should NOT use
uneet-dev
here but the correct value based onINSTALLATION_ID
)STAGE
)The correct value for
uneet-dev
for a given environment is also declared in Travis Setting.It is then passed on as the variable
TRAVIS_PROFILE
.Problematic assumptions:
apienroll/test.sh
Line 7 in 6cfcb24
assumes that there is a user with userId = 32 in the installation <-- This might NOT be true.
apienroll/test.sh
Line 8 in 6cfcb24
assumes that userApiKey for user 32 has a certain value in the installation <-- This might NOT be true.
The text was updated successfully, but these errors were encountered: