pulumi-scaleway icon indicating copy to clipboard operation
pulumi-scaleway copied to clipboard

Pulumi provider for Scaleway

Results 27 pulumi-scaleway issues
Sort by recently updated
recently updated
newest added

I'm trying to deploy a serverless function using this code : ```ts const provider = new scaleway.Provider('scaleway-par-2', { region: 'fr-par', }); const coreApiFunctionNamespace = new scaleway.FunctionNamespace('coreApi', undefined, { provider });...

Related to https://github.com/pulumi/pulumi-terraform-bridge/issues/1231 Code: ``` const nochemSshKey = scaleway.getAccountSshKey({ name: "nochem", }); let sshKeyId = nochemSshKey.then(key => key.id); // ubuntu 22.04 new scaleway.BaremetalServer("test", { zone: "fr-par-2", offer: "EM-I210E-NVME", os: "96e5f0f2-d216-4de2-8a15-68730d877885",...

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...

It would be nice to support [Assets & Archive](https://www.pulumi.com/docs/concepts/inputs-outputs/assets-archives/) to upload serverless functions instead of having to create a zip and compute the hash yourself.

If you configure the default `scaleway:project_id` and you create an `ObjectBucket` like this : ```csharp var bucket = new ObjectBucket("bucket", new() { Name = "bucket", }); ``` The bucket is...

I use the `id` output of a `VpcPrivateNetwork` resource as the input for `private_network_id`. It keeps triggering a change because the existing resource uses the zone in the `id`, while...

Hi. We recently upgraded from 0.1.8 to 1.7.0 and implement a "refresh" function (to help reimporting the state of existing buckets). We got this errors: ```shell error: an unhandled error...