sparse-intern-71089
01/06/2021, 8:12 AMtall-librarian-49374
01/06/2021, 9:17 AMswift-hamburger-98290
01/06/2021, 9:43 AMvar vault = new KeyVault(...);
var app = new AppService(...);
// Workaround to get app's identity: <https://github.com/pulumi/pulumi/issues/5071#issuecomment-669281090>
var appGet = AppService.Get(...);
new Assignment(...); // give App access to KeyVault
Now the problem is that when the Assignment
is given, the app is already running. A restart after the Assignment
would fix this issue.
We are now doing it after the DevOps Pulumi@1
task, using an AzureCli@2
task (it works). We were wondering if there is a pulumi mechanism to achieve the same.tall-librarian-49374
01/06/2021, 9:56 AMswift-hamburger-98290
01/06/2021, 10:07 AM