Viewing docs for Scaleway v1.48.1
published on Tuesday, May 12, 2026 by pulumiverse
published on Tuesday, May 12, 2026 by pulumiverse
Scaleway
I want to use the Pulumi Scaleway package (scaleway) in my project.
## Provider details
- Package: scaleway
- Version: v1.48.1
- Publisher: pulumiverse
- Source: pulumi
- Repository: https://github.com/pulumiverse/pulumi-scaleway
## Documentation
The Pulumi Cloud Registry API serves canonical, up-to-date docs for this package — including private packages and every published version. Send the "Accept: text/markdown" header for clean readable content, or "application/json" for structured data.
Start at the navigation tree, which cross-links to the readme, installation guide, and per-resource docs URL template:
- https://api.pulumi.com/api/registry/packages/pulumi/pulumiverse/scaleway/versions/latest/nav
Returns a summary by default. The full tree can be hundreds of kB for large providers, so prefer targeted search: append "?q=<query>&depth=full" to filter by resource/function title or token (for example "?q=bucket&depth=full"). Only request the full nav without a query if you actually need to enumerate every resource.
Other endpoints:
- Overview and getting started: https://api.pulumi.com/api/registry/packages/pulumi/pulumiverse/scaleway/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/pulumiverse/scaleway/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/pulumiverse/scaleway/versions/latest/docs/{token}?lang={lang}
Replace {token} with the percent-encoded token from the nav response (for example aws:s3/bucket:Bucket).
Replace {lang} with typescript, python, go, csharp, java, or yaml.
Fetch the installation endpoint above for the correct setup steps — install instructions vary between native providers, bridged Terraform providers, and component packages.
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for Scaleway v1.48.1
published on Tuesday, May 12, 2026 by pulumiverse
published on Tuesday, May 12, 2026 by pulumiverse
The Scaleway provider for Pulumi can be used to provision any of the cloud resources available in Pulumi. The Scaleway provider must be configured with credentials to deploy and update resources in Scaleway.
Example
import * as scaleway from "@pulumiverse/scaleway";
const publicIp = new scaleway.InstanceIp("example")
const server = new scaleway.InstanceServer("example", {
type: "DEV1-S",
image: "ubuntu_focal",
ipId: publicIp.id,
tags: [
"typescript"
]
})
import pulumiverse_scaleway as scaleway
public_ip = scaleway.InstanceIp("example")
server = scaleway.InstanceServer("example",
image="ubuntu_focal",
type="DEV1-S",
ip_id=public_ip.id,
tags=["python"]
)
import (
"fmt"
scaleway "github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
publicIp, err := scaleway.NewInstanceIp(ctx, "example", &scaleway.InstanceIpArgs{})
if err != nil {
return fmt.Errorf("error creating public IP: %v", err)
}
server, err := scaleway.NewInstanceServer(ctx, "example", &scaleway.InstanceServerArgs{
Image: pulumi.String("ubuntu_focal"),
IpId: publicIp.ID(),
Type: pulumi.String("DEV1-S"),
Tags: pulumi.StringArray{
pulumi.String("go"),
},
})
if err != nil {
return fmt.Errorf("error creating instance server: %v", err)
}
ctx.Export("server", server.Name)
return nil
})
}
using Pulumi;
using Pulumiverse.Scaleway;
class ScalewayServer : Stack
{
public ScalewayServer()
{
var publicIp = new InstanceIp("example", new InstanceIpArgs{});
var server = new InstanceServer("example", new InstanceServerArgs{
Image = "ubuntu_focal",
IpId = publicIp.Id,
Type = "DEV1-S",
});
}
}
Issues
This is a community maintained provider. Please file issues and feature requests here:
You can also reach out on one of these channels:
#pulumiversechannel on the Pulumi Community Slack#pulumichannel on the Scaleway Community Slack
Viewing docs for Scaleway v1.48.1
published on Tuesday, May 12, 2026 by pulumiverse
published on Tuesday, May 12, 2026 by pulumiverse
