I am trying to create a load balance via a NPM projet with the fallowing code and encouter this error : panic: HasAttribute on non-object Type
The Node.js code (from the documentation):
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@lbrlabs/pulumi-scaleway";
const main = new scaleway.LoadbalancerIp("main", {zone: "fr-par-1"});
const base = new scaleway.Loadbalancer("base", {
ipId: main.id,
zone: main.zone,
type: "LB-S",
});
Hello !
I am trying to create a load balance via a NPM projet with the fallowing code and encouter this error :
panic: HasAttribute on non-object Type
The Node.js code (from the documentation):
Is there any way I miss a mandatory attribute?
Thanks!!
Pulumi version: 3.80.0 @lbrlabs/pulumi-scaleway: ^1.10.0
Full stacktrace: