Viewing docs for UpCloud v0.13.0
published on Wednesday, May 13, 2026 by UpCloudLtd
published on Wednesday, May 13, 2026 by UpCloudLtd
UpCloud
I want to use the Pulumi UpCloud package (upcloud) in my project.
## Provider details
- Package: upcloud
- Version: v0.13.0
- Publisher: UpCloudLtd
- Source: pulumi
- Repository: https://github.com/UpCloudLtd/pulumi-upcloud
## 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/upcloudltd/upcloud/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/upcloudltd/upcloud/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/upcloudltd/upcloud/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/upcloudltd/upcloud/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 UpCloud v0.13.0
published on Wednesday, May 13, 2026 by UpCloudLtd
published on Wednesday, May 13, 2026 by UpCloudLtd
Use the UpCloud Pulumi provider to deploy and manage resources in UpCloud. Get started by installing the provider and configuring your credentials.
Example usage
package main
import (
"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Load configuration from Pulumi config
cfg := config.New(ctx, "")
objectStorageName := cfg.Get("object_storage_name")
if objectStorageName == "" {
objectStorageName = "bucket-example-objstov2"
}
region := cfg.Get("region")
if region == "" {
region = "europe-1"
}
bucketName := cfg.Get("bucket_name")
if bucketName == "" {
bucketName = "bucket"
}
// Create an UpCloud Managed Object Storage
objectStorage, err := upcloud.NewManagedObjectStorage(ctx, "objectStorage", &upcloud.ManagedObjectStorageArgs{
Name: pulumi.String(objectStorageName),
Region: pulumi.String(region),
ConfiguredStatus: pulumi.String("started"),
})
if err != nil {
return err
}
// Create a Bucket inside the Object Storage
bucket, err := upcloud.NewManagedObjectStorageBucket(ctx, "storageBucket", &upcloud.ManagedObjectStorageBucketArgs{
ServiceUuid: objectStorage.ID(),
Name: pulumi.String(bucketName),
})
if err != nil {
return err
}
// Export outputs
ctx.Export("object_storage_uuid", objectStorage.ID())
ctx.Export("bucket_name", bucket.Name)
return nil
})
}
import pulumi
import pulumi_upcloud as upcloud
# Load user input from Pulumi config
config = pulumi.Config()
object_storage_name = config.require("object_storage_name")
region = config.require("region")
bucket_name = config.require("bucket_name")
# Create an UpCloud Managed Object Storage
object_storage = upcloud.ManagedObjectStorage(
"objectStorage",
name=object_storage_name,
region=region,
configured_status="started",
)
# Create a Bucket inside the Object Storage
bucket = upcloud.ManagedObjectStorageBucket(
"storageBucket",
service_uuid=object_storage.id,
name=bucket_name,
)
# Export outputs
pulumi.export("object_storage_uuid", object_storage.id)
pulumi.export("bucket_name", bucket.name)
import * as pulumi from "@pulumi/pulumi";
import * as upcloud from "@upcloud/pulumi-upcloud";
// Load Pulumi config values
const config = new pulumi.Config();
const objectStorageName = config.require("object_storage_name");
const region = config.require("region");
const bucketName = config.require("bucket_name");
// Create an UpCloud Managed Object Storage
const objectStorage = new upcloud.ManagedObjectStorage("objectStorage", {
name: objectStorageName,
region: region,
configuredStatus: "started"
});
// Create a Bucket inside the Object Storage
const bucket = new upcloud.ManagedObjectStorageBucket("storageBucket", {
serviceUuid: objectStorage.id,
name: bucketName
});
// Export outputs
export const objectStorageUuid = objectStorage.id;
export const bucketNameOutput = bucket.name;
using Pulumi;
using UpCloud.Pulumi.UpCloud;
using System.Collections.Generic;
return await Deployment.RunAsync(() =>
{
var config = new Pulumi.Config();
var objectStorageName = config.Require("object_storage_name");
var region = config.Require("region");
var bucketName = config.Require("bucket_name");
var objectStorage = new ManagedObjectStorage("objectStorage", new()
{
Name = objectStorageName,
Region = region,
ConfiguredStatus = "started"
});
var bucket = new ManagedObjectStorageBucket("storageBucket", new()
{
ServiceUuid = objectStorage.Id,
Name = bucketName
});
return new Dictionary<string, object?>
{
["object_storage_uuid"] = objectStorage.Id,
["bucket_name"] = bucket.Name
};
});
Viewing docs for UpCloud v0.13.0
published on Wednesday, May 13, 2026 by UpCloudLtd
published on Wednesday, May 13, 2026 by UpCloudLtd