Hello, I am creating a virtual private server (vps...
# general
f
Hello, I am creating a virtual private server (vps) with OVH and using @ovhcloud/pulumi-ovh. I was able to run successfully the following code and able to create the vps, but I got an error in pulumi with the following error:
Copy code
error: Could not find required property 'display_name' in state. This is an error in ovh resource provider, please report at <https://github.com/ovh/pulumi-ovh>
This is the code:
Copy code
import * as ovh from "@ovhcloud/pulumi-ovh"
import * as pulumi from "@pulumi/pulumi";

let config = new pulumi.Config();


const createVps = (name: string) => {
    let vpsArgs: ovh.vps.VpsArgs = {ovhSubsidiary: "US", plans: [{configurations: [{label: "vps_os", value: "Ubuntu 24.10"}, {label: "vps_datacenter", value: "US-EAST-VA"}], duration: "P1M", pricingMode:"default", planCode: "vps-comfort-4-8-160"}]};

    let vpsOpts: pulumi.CustomResourceOptions = {};

    let vpsInstance: ovh.vps.Vps = new ovh.vps.Vps(name, vpsArgs, vpsOpts);

    return vpsInstance;
};

const vpsInfo = createVps("my-gateway-vps");
Is this actually an error, right? Just wanted to confirm here. I will add the error in the repo as the error mentions