Azure-Samples/azure-spring-boot-samples

[BUG] Bug in sample aad-resource-server configuration yml

tommyNy opened this issue · 1 comments

On this page

https://github.com/Azure-Samples/azure-spring-boot-samples/tree/spring-cloud-azure_4.5.0/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server

param app-id-uri is localized on bad level:

is

spring:
  cloud:
    azure:
      active-directory:
        enabled: true
        credential:
          client-id: ${AZURE_CLIENT_ID}
          app-id-uri: ${APP_ID_URI}

should be

spring:
  cloud:
    azure:
      active-directory:
        enabled: true
        credential:
          client-id: ${AZURE_CLIENT_ID}
        app-id-uri: ${APP_ID_URI}

Hi, @tommyNy thanks for reaching out, will fix it in the main branch.