Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/PI-275-fix_connections #196

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions scripts/infrastructure/apigee/proxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ function generate_proxy(){
echo "proxy name must not contain '--'"
exit 1
fi

# 2. Since we will prefix with 'connecting-party-manager-'
# we cannot start with a hyphen either
if [[ ${_workspace_name} == -* ]];
Expand All @@ -95,6 +96,12 @@ function generate_proxy(){
exit 1
fi

#3. Apigee services expect int-sandbox to be sandbox to match
if [[ ${_workspace_name} == "int-sandbox" ]];
then
_workspace_name="sandbox"
fi

# Download the pem file if it does not exist
if [ ! -f "${APIGEE_CONFIG_PATH}/${_apigee_stage}/.proxygen/private_key.pem" ]; then
poetry run python ${PATH_TO_HERE}/download_pem.py ${_apigee_stage} ${APIGEE_DEPLOYMENT_ROLE}
Expand Down
Loading