Prodvana v0.1.20 published on Tuesday, Apr 2, 2024 by Prodvana
Prodvana
The Prodvana provider for Pulumi can be used to provision resources within your Prodvana organization. For example you can create and manage Runtimes, Applications, and Release Channels.
The Prodvana provider must be configured with credentials to manage the resources in your Prodvana organization.
Example
<div>
<pulumi-choosable type="language" values="typescript" mode="">
import * as prodvana from "@prodvana/pulumi-prodvana";
const app = new prodvana.Application("my-app", {
name: "my-app",
});
<div>
<pulumi-choosable type="language" values="python" mode="">
import pulumi_prodvana as prodvana
app = prodvana.Application("my-app", name="my-app")