Huh. ```INSTANCES_API = [ openstack.compute.Instance( ... __opts__=pulumi.ResourceOption...
i
Huh.
Copy code
INSTANCES_API = [
    openstack.compute.Instance(
...
        __opts__=pulumi.ResourceOptions(provider=REGIONS[dc]))
    for i in range(COUNT_API) for dc in REGIONS
]
and later
Copy code
exported_api = {
    srv.name.apply: srv.access_ip_v4.apply
    for srv in INSTANCES_API
}
So far so good, and
pulumi preview
works with this. But, when I add
Copy code
pulumi.export('nodes_api', exported_api)
suddenly I get this error.