Can anyone please help me on this? Is this because...
# python
f
Can anyone please help me on this? Is this because of a limitation of pulumi or is it something that I'm doing wrong here?
a
https://www.pulumi.com/docs/concepts/options/ignorechanges/
The property names passed to
ignoreChanges
should always be the “camelCase” version of the property name, as used in the core Pulumi resource model. For example, a property named
nested_resource
would turn into
nestedResource
.
Nested references:
root.double.nest
root["double"].nest
root["double"]["nest"]
root.array[0]
root.array[100]
root.array[0].nested
root.array[0][1].nested
root.nested.array[0].double[1]
Try
properties.diskSize
- you should see the exact name when you run
pulumi pre --refresh --diff
f
Thank you! @adventurous-butcher-54166 I'll try this.