如何使用 Pulumi 为 AD App 添加权限
How to add a permission to an AD App with Pulumi
我尝试将 "Sign in and read user profile" 权限添加到我的应用程序,但我找不到如何操作。
这是我现在的代码
const myApp= new azure.ad.Application("myApp", {
name: "myApp",
availableToOtherTenants: false,
homepage: "https://homepage",
identifierUris: ["https://uri"],
oauth2AllowImplicitFlow: true,
replyUrls: ["https://replyurl"]
});
const myAppPrincipal= new azure.ad.ServicePrincipal("myAppPrincipal", {
applicationId: myApp.applicationId,
});
怎么给Pulumi做权限?
这是不可能的,pulumi 依赖于 terraform,而 terraform 没有图形资源,只有 ARM 的东西。
新的 azure 广告提供商(现在与旧的相同):https://www.terraform.io/docs/providers/azuread/index.html
我尝试将 "Sign in and read user profile" 权限添加到我的应用程序,但我找不到如何操作。
这是我现在的代码
const myApp= new azure.ad.Application("myApp", {
name: "myApp",
availableToOtherTenants: false,
homepage: "https://homepage",
identifierUris: ["https://uri"],
oauth2AllowImplicitFlow: true,
replyUrls: ["https://replyurl"]
});
const myAppPrincipal= new azure.ad.ServicePrincipal("myAppPrincipal", {
applicationId: myApp.applicationId,
});
怎么给Pulumi做权限?
这是不可能的,pulumi 依赖于 terraform,而 terraform 没有图形资源,只有 ARM 的东西。
新的 azure 广告提供商(现在与旧的相同):https://www.terraform.io/docs/providers/azuread/index.html