full-rainbow-99384
03/03/2025, 6:32 PMerror: 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:
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 mentionsNo matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by