fstoerkle / backstage-azure-credentials-devtools-repro

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reproduction case for backstage/backstage#20174

See backstage/backstage#20174

How to reproduce

  1. Checkout this repo
  2. Run yarn install
  3. Run yarn backstage-cli config:print --lax --config test-config.yaml

Expected

Loaded config from test-config.yaml
app:
  baseUrl: x
backend:
  listen: 5000
  baseUrl: x
  database:
    client: better-sqlite3
    connection: <secret>
techdocs:
  builder: local
integrations:
  azure:
    - host: test
      credentials:
        - clientSecret: <secret>
    - host: dev.azure.com
      credentials:
        - organizations:
            - my-org
          personalAccessToken: <secret>
        - organizations:
            - my-other-org
          clientSecret: <secret>

Actual

Loaded config from test-config.yaml
app:
  baseUrl: x
backend:
  listen: 5000
  baseUrl: x
  database:
    client: better-sqlite3
    connection: <secret>
techdocs:
  builder: local
integrations:
  azure:
    - host: test
      credentials:
        - clientSecret: azure-client-secret
    - host: dev.azure.com
      credentials:
        - organizations:
            - my-org
          personalAccessToken: azure-pat
        - organizations:
            - my-other-org
          clientSecret: azure-client-secret

Additional information

This repo was created via npx @backstage/create-app@latest. Node.js version v18.17.1

About


Languages

Language:TypeScript 91.5%Language:Dockerfile 4.5%Language:HTML 3.4%Language:JavaScript 0.6%