Skip to content

Commit 74be60a

Browse files
authored
Merge pull request #280 from haylopht/main
Update broken parameter on service principal login
2 parents 0e5bd3e + 6b2a236 commit 74be60a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/admin-service-api-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read
1010

1111
env:
12-
AZURE_WEBAPP_NAME: 'admin-api-asdk-test-v23y' # set this to your application's name
12+
AZURE_WEBAPP_NAME: 'admin-api-asdk-tst4-08dt' # set this to your application's name
1313
AZURE_WEBAPP_PACKAGE_PATH: . # set this to the path to your web app project, defaults to the repository root
1414
DOTNET_VERSION: 8.x.x
1515
PROJECT_DIR: ./src/Saas.Admin/Saas.Admin.Service

.github/workflows/permissions-api-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read
1010

1111
env:
12-
AZURE_WEBAPP_NAME: 'api-permission-asdk-test-v23y' # set this to your application's name
12+
AZURE_WEBAPP_NAME: 'api-permission-asdk-tst4-08dt' # set this to your application's name
1313
AZURE_WEBAPP_PACKAGE_PATH: . # set this to the path to your web app project, defaults to the repository root
1414
DOTNET_VERSION: 8.x.x
1515
PROJECT_DIR: ./src/Saas.Identity/Saas.Permissions/Saas.Permissions.Service_v1.1

src/Saas.Identity/Saas.IdentityProvider/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deploying the Identity Foundation Services
22

3-
This deployment script provisions and configures the Azure services defining the SaaS Identify Foundation, which is back-bone of the Azure SaaS Dev Kit.
3+
This deployment script provisions and configures the Azure services defining the SaaS Identify Foundation, the back-bone of the Azure SaaS Dev Kit.
44

55
## Before You begin
66

src/Saas.Lib/Deployment.Script.Modules/service-principal-module.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function service-principal-login() {
293293
az login \
294294
--service-principal \
295295
--username "${app_id}" \
296-
--password "${credentials_path}" \
296+
--certificate "${credentials_path}" \
297297
--tenant "${b2c_tenant_id}" \
298298
--allow-no-subscriptions > /dev/null \
299299
|| echo "Failed to login with service principal." \

0 commit comments

Comments
 (0)