From e755fe85ef36abf3502d18e871dc33bad8621557 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Wed, 19 Jun 2024 09:52:37 -0700 Subject: [PATCH] Update sample tests to use rad credential register azure sp (#1572) Signed-off-by: willdavsmith --- .github/workflows/test.yaml | 2 +- samples/eshop/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 66d9b61b..fb434133 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -239,7 +239,7 @@ jobs: run: | if [[ "${{ matrix.credential }}" == "azure" ]]; then rad env update default --azure-subscription-id ${{ secrets.AZURE_SUBSCRIPTIONID_TESTS }} --azure-resource-group ${{ steps.gen-id.outputs.TEST_AZURE_RESOURCE_GROUP }} - rad credential register azure --client-id ${{ secrets.AZURE_SP_TESTS_APPID }} --client-secret ${{ secrets.AZURE_SP_TESTS_PASSWORD }} --tenant-id ${{ secrets.AZURE_SP_TESTS_TENANTID }} + rad credential register azure sp --client-id ${{ secrets.AZURE_SP_TESTS_APPID }} --client-secret ${{ secrets.AZURE_SP_TESTS_PASSWORD }} --tenant-id ${{ secrets.AZURE_SP_TESTS_TENANTID }} fi if [[ "${{ matrix.credential }}" == "aws" ]]; then rad env update default --aws-region ${{ env.AWS_REGION }} --aws-account-id ${{ secrets.AWS_ACCOUNT_ID }} diff --git a/samples/eshop/README.md b/samples/eshop/README.md index 42cb4521..efadf083 100644 --- a/samples/eshop/README.md +++ b/samples/eshop/README.md @@ -19,7 +19,7 @@ This reference app is a "radified" version of the [eShop on containers](https:// rad credential register aws --aws-access-key-id --aws-secret-access-key # Azure - rad credential register azure --client-id --client-secret --tenant-id + rad credential register azure sp --client-id --client-secret --tenant-id ``` 1. Clone the repository and switch to the app directory: ```bash