You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to create a system assigned managed identity for my SQL Server as part of the sqlServer builder but that doesn't seem to be possible. I'm willing to put in a PR for this if this is something that you would like to support.
The text was updated successfully, but these errors were encountered:
Would you mean something similar to the grant_access on the storageaccount builder where you can provide a PrincipalId and a RoleId? If so it seems like this would be a good thing to do.
You'll need to add an Identity field to the IArmResource, similar to how Sites does it for function apps.
Then it needs to be implemented in the JsonModel so it will be emitted in the template. You can also look to the implementation in function apps.
So it can be set from the builder, you'll need to add a field on the builder's config object (example from web apps).
And finally the add_identityoperation and the system_identityoperation. These will be a little simpler for SQL Server since you don't need to wrap them like it needed for the web apps.
Please give it a try, and reach out if you need help.
Thanks for all your work on this awesome project.
I would like to create a system assigned managed identity for my SQL Server as part of the
sqlServer
builder but that doesn't seem to be possible. I'm willing to put in a PR for this if this is something that you would like to support.The text was updated successfully, but these errors were encountered: