Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gissebass committed Nov 10, 2024
1 parent 4930ef1 commit 95646e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/get-certificate-in-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ jobs:

- name: Add certificate to Azure Application Gateway
run: |
# Add the certificate to the Azure Application Gateway
# Add the base64-encoded certificate and key to the Application Gateway
az network application-gateway ssl-cert create \
--gateway-name "hilfling-gateway" \
--resource-group "hilfling-backend_group" \
--name "hilfling-gateway-ssl-cert" \
--cert-file "/etc/letsencrypt/live/$DOMAIN_NAME/fullchain.pem" \
--key-file "/etc/letsencrypt/live/$DOMAIN_NAME/privkey.pem"
--cert-password "" \
--cert-file <(echo "$CERT_PEM" | base64 -d) \
--key-file <(echo "$KEY_PEM" | base64 -d)

0 comments on commit 95646e2

Please sign in to comment.