Skip to content

In AppInfo replace secret with secrets #3136

@waldekmastykarz

Description

@waldekmastykarz

In the aad app add command we have the AppInfo interface that describes the shape of data returned by the command:

interface AppInfo {
appId: string;
// objectId
id: string;
tenantId: string;
secret?: string;
}
. Unfortunately, AppInfo allows only for a single value for a secret, where in reality you could define multiple. This is especially the case when you're creating the app from the manifest.

In v6 we should change the shape of the data and replace the secret property with secrets which is { displayName: string, value: string }[].

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions