diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1f133c..0ea1cd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: - name: Log in with Azure (Federated Credentials) run: | azd auth login ` - --client-id "${{ secrets.AUTH_CLIENT_ID }}` + --client-id "${{ secrets.AUTH_CLIENT_ID }}"` --federated-credential-provider "github" ` --tenant-id "${{ secrets.AUTH_CLIENT_SECRET }}" shell: pwsh diff --git a/infra/app/ddd.bicep b/infra/app/ddd.bicep index 8e9331f..c0235d5 100644 --- a/infra/app/ddd.bicep +++ b/infra/app/ddd.bicep @@ -108,17 +108,3 @@ output defaultDomain string = containerAppsEnvironment.properties.defaultDomain output name string = app.name output uri string = 'https://${app.properties.configuration.ingress.fqdn}' output id string = app.id - -resource authConfig 'Microsoft.App/containerApps/authConfigs@2023-11-02-preview' = if (environment == 'dev') { - name: 'current' - parent: app - properties: { - globalValidation: { - unauthenticatedClientAction: 'RedirectToLoginPage' - } - platform: { - enabled: true - runtimeVersion: 'v2' - } - } -}