brief-zebra-95235
04/13/2023, 2:15 PMGetClientConfigResult current = await GetClientConfig.InvokeAsync();
var aadProvider = new Provider(
name: "AadB2cProvider",
args: new ProviderArgs {
TenantId = tenant.Id,
MetadataHost = "<http://management.azure.com|management.azure.com>"
});
var appRegistration = new Application(
name: Environment.Value.GloballyUniqueName,
args: new ApplicationArgs {
DisplayName = env.GloballyUniqueName,
IdentifierUris = $"api://{env.GloballyUniqueName}.<http://azurewebsites.net|azurewebsites.net>",
Owners = new[] {
current.ObjectId,
},
SignInAudience = "AzureADMultipleOrgs",
Api = new ApplicationApiArgs {
...
}
},
options: new Pulumi.CustomResourceOptions {
Provider = aadProvider,
});
billowy-army-68599
04/13/2023, 2:32 PMup
operation?brief-zebra-95235
04/13/2023, 3:18 PMbillowy-army-68599
04/13/2023, 5:24 PMbrief-zebra-95235
04/13/2023, 5:39 PMbillowy-army-68599
04/13/2023, 5:48 PMbrief-zebra-95235
04/13/2023, 6:19 PM