Hello, having a little trouble with a private AKS ...
# general
c
Hello, having a little trouble with a private AKS cluster (https://www.pulumi.com/registry/packages/azure-native/api-docs/containerservice/managedcluster/#userassignedidentities_csharp) and user assigned identities
I can create a
UserManagedIdentity
, but I can't get the
string
value at time of
ManagedCluster
creation. I have an
Output<string>
but I need a
string
.
Has anyone successfully created a
ManagedCluster
with a user-assigned identity deployed as part of the stack?
I ask because it seems that I can't use a System-assigned identity and still get the private DNS zone updated
b
@calm-tent-21096 you can achieve this with an
apply
I don't have a full example, csharp is the weakest of my languages, but if you do
UserManagedIdentity.apply
and create the clister inside there, it'll work
c
yes, this is what I ended up doing, thanks
But it still didn't work! I ended up filing an issue on Github