incalculable-dream-27508
09/16/2020, 1:41 PMINSTANCES_API = [
openstack.compute.Instance(
...
__opts__=pulumi.ResourceOptions(provider=REGIONS[dc]))
for i in range(COUNT_API) for dc in REGIONS
]
and later
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
pulumi.export('nodes_api', exported_api)
suddenly I get this error.