This message was deleted.
# contribute
s
This message was deleted.
q
it looks like it's enough to replace:
"digitalocean_reserved_ip":            {Tok: makeResource(digitalOceanMod, "ReservedIp")},
with this:
Copy code
"digitalocean_reserved_ip":            {
                Tok: makeResource(digitalOceanMod, "ReservedIp"),
				Fields: map[string]*tfbridge.SchemaInfo{
					"urn": {
						Name: "reservedIpUrn",
					},
				},  
},
here: https://github.com/pulumi/pulumi-digitalocean/blob/3e72e24b04dcc05956f7970bc1123142025aaa0b/provider/resources.go#L293
I've opened a PR that might fix this: https://github.com/pulumi/pulumi-digitalocean/pull/515
🙏 1
seems that flaky test completed successfully after a rerun, when could this be merged and the schema rebuilt? we can build DO without ReservedIp class for now but a complete fix in schema would be nice :)