Viewing docs for DanubeData v0.1.7
published on Sunday, Feb 1, 2026 by AdrianSilaghi
published on Sunday, Feb 1, 2026 by AdrianSilaghi
DanubeData
I want to use the Pulumi DanubeData package (danubedata) in my project.
## Provider details
- Package: danubedata
- Version: v0.1.7
- Publisher: AdrianSilaghi
- Source: pulumi
- Repository: https://github.com/AdrianSilaghi/pulumi-danubedata
## 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/AdrianSilaghi/danubedata/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/AdrianSilaghi/danubedata/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/AdrianSilaghi/danubedata/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/AdrianSilaghi/danubedata/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 DanubeData v0.1.7
published on Sunday, Feb 1, 2026 by AdrianSilaghi
published on Sunday, Feb 1, 2026 by AdrianSilaghi
The DanubeData provider for Pulumi can be used to provision and manage DanubeData cloud infrastructure resources. DanubeData is a managed infrastructure provider offering VPS instances, cache services, databases, object storage, and serverless containers.
Example
import * as danubedata from "@danubedata/pulumi";
// Create a storage bucket
const bucket = new danubedata.StorageBucket("my-bucket", {
region: "fsn1",
versioningEnabled: true,
});
// Create a Redis cache instance
const cache = new danubedata.Cache("my-cache", {
name: "app-cache",
cacheProvider: "redis",
resourceProfile: "small",
datacenter: "fsn1",
});
// Create a PostgreSQL database
const database = new danubedata.Database("my-database", {
name: "app-db",
databaseProvider: "postgresql",
providerVersion: "16",
resourceProfile: "small",
datacenter: "fsn1",
});
// Export endpoints
export const bucketEndpoint = bucket.endpointUrl;
export const cacheEndpoint = cache.endpoint;
export const databaseEndpoint = database.endpoint;
import pulumi_danubedata as danubedata
# Create a storage bucket
bucket = danubedata.StorageBucket("my-bucket",
region="fsn1",
versioning_enabled=True)
# Create a Redis cache instance
cache = danubedata.Cache("my-cache",
name="app-cache",
cache_provider="redis",
resource_profile="small",
datacenter="fsn1")
# Create a PostgreSQL database
database = danubedata.Database("my-database",
name="app-db",
database_provider="postgresql",
provider_version="16",
resource_profile="small",
datacenter="fsn1")
# Export endpoints
pulumi.export("bucket_endpoint", bucket.endpoint_url)
pulumi.export("cache_endpoint", cache.endpoint)
pulumi.export("database_endpoint", database.endpoint)
package main
import (
"github.com/AdrianSilaghi/pulumi-danubedata/sdk/go/danubedata"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Create a storage bucket
bucket, err := danubedata.NewStorageBucket(ctx, "my-bucket", &danubedata.StorageBucketArgs{
Region: pulumi.String("fsn1"),
VersioningEnabled: pulumi.Bool(true),
})
if err != nil {
return err
}
// Create a Redis cache instance
cache, err := danubedata.NewCache(ctx, "my-cache", &danubedata.CacheArgs{
Name: pulumi.String("app-cache"),
CacheProvider: pulumi.String("redis"),
ResourceProfile: pulumi.String("small"),
Datacenter: pulumi.String("fsn1"),
})
if err != nil {
return err
}
// Export endpoints
ctx.Export("bucketEndpoint", bucket.EndpointUrl)
ctx.Export("cacheEndpoint", cache.Endpoint)
return nil
})
}
using Pulumi;
using DanubeData = DanubeData.DanubeData;
return await Deployment.RunAsync(() =>
{
// Create a storage bucket
var bucket = new DanubeData.StorageBucket("my-bucket", new()
{
Region = "fsn1",
VersioningEnabled = true,
});
// Create a Redis cache instance
var cache = new DanubeData.Cache("my-cache", new()
{
Name = "app-cache",
CacheProvider = "redis",
ResourceProfile = "small",
Datacenter = "fsn1",
});
// Export endpoints
return new Dictionary<string, object?>
{
["bucketEndpoint"] = bucket.EndpointUrl,
["cacheEndpoint"] = cache.Endpoint,
};
});
Resources
The DanubeData provider supports the following resources:
Compute
- Vps - KubeVirt-based virtual machines with IPv4/IPv6 support
- Serverless - Knative-based serverless containers with scale-to-zero
Data Services
- Cache - In-memory data stores (Redis, Valkey, Dragonfly)
- Database - Managed databases (MySQL, PostgreSQL, MariaDB)
Storage
- StorageBucket - S3-compatible object storage
- StorageAccessKey - Access keys for object storage
Security
- SshKey - SSH public keys for VPS access
- Firewall - Network firewall rules
Backup
- VpsSnapshot - Point-in-time snapshots of VPS instances
Viewing docs for DanubeData v0.1.7
published on Sunday, Feb 1, 2026 by AdrianSilaghi
published on Sunday, Feb 1, 2026 by AdrianSilaghi