Dumb question does anyone know how to get around t...
# azure
b
Dumb question does anyone know how to get around this?
Copy code
Message="Make sure to create your workspace using a client which support MSI"
Copy code
var exampleWorkspace = new Workspace("exampleWorkspace", new()
    {
        ResourceGroupName = resourceGroup.Name,
        Location = resourceGroup.Location,
        Kind = "Project",
    });
f
You probably need to specify a MSI via the
Identity
property of whichever resource you're declaring there. There's quite a few
Workspace
resource types - let us know what specific
Workspace
you're using when you have a sec.
b
@future-hairdresser-70637 the kind I'm trying to do is project
Is that what you mean on am I missing your question? I'm trying to deploy an Azure AI Studio instance with a Llama serverless instance.
f
Yep, that's it! Thanks. My first thought a few days ago was you're using Azure Native and haven't specified an `Identity`: https://www.pulumi.com/registry/packages/azure-native/api-docs/machinelearningservices/workspace/#managedserviceidentity - I haven't tried this, but setting that to
ManagedServiceIdentityType.SystemAssigned
and providing/specifying the three properties mentioned in first Azure Classic example (
ApplicationInsights
,
KeyVault
, and
StorageAccount
) hopefully gets you further.