This message was deleted.
# azure
s
This message was deleted.
t
It’s a bug - fixed in the upcoming release. The issue and the workaround: https://github.com/pulumi/pulumi-azure-native/issues/641#issuecomment-792732486
t
Thanks Mikhail!
Hey it seems like the typescript bindings for that version are missing azureNative.cache.v20200601.<inputs.SkuArgs>
glanced around the other versions and they also seem to be missing inputs. (they do have SkuFamily and SkuName at that level). Anywho I see your fix in the pipeline and we're not in prod quite yet so I appreciate you taking the time
t
I believe the module path is different. Something like
azureNative.inputs.caache.v20200601.SkuArgs
You shouldn’t need to specify the type name most of the time, though.
Just use the resource from there:
new azureNative.cache.v20200601.Redis("", { sku: … });
t
yep that worked! Just turning the args into a hash got it