Merge pull request #25391 from mario-mui/feat/externalAccess-optional

fix: change externalAccess to optional
This commit is contained in:
Ben Lambert
2024-08-20 15:32:55 +02:00
committed by GitHub
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/backend-defaults': patch
'@backstage/backend-app-api': patch
---
`auth.externalAccess` should be optional in the config schema
+1 -1
View File
@@ -71,7 +71,7 @@ export interface Config {
* the Backstage ecosystem to get authorized for access to APIs that do
* not permit unauthorized access.
*/
externalAccess: Array<
externalAccess?: Array<
| {
/**
* This is the legacy service-to-service access method, where a set
+1 -1
View File
@@ -74,7 +74,7 @@ export interface Config {
* the Backstage ecosystem to get authorized for access to APIs that do
* not permit unauthorized access.
*/
externalAccess: Array<
externalAccess?: Array<
| {
/**
* This is the legacy service-to-service access method, where a set