brief-action-50530
02/04/2022, 7:37 PMI am trying to create a VirtualMachineExtension using pulumi using C# but the type for settings and protectedSettings are Input<object>. I tried many things but I couldn’t make it work. Does anyone have any example on how to do this?
https://www.pulumi.com/registry/packages/azure-native/api-docs/compute/virtualmachineextension/#inputs
miniature-musician-31262
02/04/2022, 10:23 PMVirtualMachineExtension
instance? And anything useful you might be seeing in an error message?famous-parrot-52821
02/07/2022, 4:30 PMminiature-musician-31262
02/07/2022, 10:18 PMProtectedSettings
where a Settings
is expected — but the properties look okay (at least from my reading of the schema), so I’m guessing that’s maybe not it. Might want to try lining those up a bit better, though, just to rule it out as a possible cause. https://docs.microsoft.com/en-us/azure/virtual-machines/extensions/custom-script-windows#troubleshoot-and-supporttall-librarian-49374
02/07/2022, 10:22 PMnew Dictionary<string, object> { ... }
famous-parrot-52821
02/08/2022, 3:23 PMtall-librarian-49374
02/08/2022, 3:39 PMdoesn’t accept Dictionary as inputIs it a compilation or a runtime error?
famous-parrot-52821
02/09/2022, 2:36 PM