Viewing docs for Volcengine v0.0.47
published on Friday, Mar 13, 2026 by Volcengine
published on Friday, Mar 13, 2026 by Volcengine
Volcengine
I want to use the Pulumi Volcengine package (volcengine) in my project.
## Provider details
- Package: volcengine
- Version: v0.0.47
- Publisher: Volcengine
- Source: pulumi
- Repository: https://github.com/volcengine/pulumi-volcengine
## 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/volcengine/volcengine/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/volcengine/volcengine/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/volcengine/volcengine/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/volcengine/volcengine/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 Volcengine v0.0.47
published on Friday, Mar 13, 2026 by Volcengine
published on Friday, Mar 13, 2026 by Volcengine
The Volcengine provider for Pulumi can be used to provision any of the cloud resources available in Volcengine. The Volcengine provider must be configured with credentials to deploy and update resources in Volcengine.
Example
import * as volcengine from "@volcengine/pulumi";
const myVpc = new volcengine.vpc.Vpc("myVpc", {
cidrBlock: "172.16.0.0/16",
dnsServers: [
"8.8.8.8",
"114.114.114.114",
],
vpcName: "pulumi-vpc-demo"
});
import pulumi_volcengine as volcengine
my_vpc = volcengine.vpc.Vpc("myVpc",
cidr_block="172.16.0.0/16",
dns_servers=[
"8.8.8.8",
"114.114.114.114",
],
vpc_name="pulumi-vpc-demo"
)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vpc.NewVpc(ctx, "myVpc", &vpc.VpcArgs{
CidrBlock: pulumi.String("172.16.0.0/16"),
DnsServers: pulumi.StringArray{
pulumi.String("8.8.8.8"),
pulumi.String("114.114.114.114"),
},
VpcName: pulumi.String("pulumi-vpc-demo"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using Pulumi;
using Pulumi.Volcengine.Vpc;
return await Deployment.RunAsync(() =>
{
var myVpc = new Vpc("myVpc", new VpcArgs
{
CidrBlock = "172.16.0.0/16",
DnsServers = new InputList<string>
{
"8.8.8.8",
"114.114.114.114"
},
VpcName = "pulumi-vpc-demo"
});
return new Dictionary<string, object?>
{
};
});
Viewing docs for Volcengine v0.0.47
published on Friday, Mar 13, 2026 by Volcengine
published on Friday, Mar 13, 2026 by Volcengine
