PostgreSQL v3.12.0 published on Thursday, Sep 12, 2024 by Pulumi
PostgreSQL
The PostgreSQL provider for Pulumi can be used to provision any of the resources available for PostgreSQL. The PostgreSQL provider must be configured with credentials to deploy and update resources in PostgreSQL.
Example
const postgresql = require("@pulumi/postgresql")
const myDb = new postgresql.Database("my-database");
import * as postgresql from "@pulumi/postgresql";
const myDb = new postgresql.Database("my-database");
import pulumi_postgresql as postgresql
my_db = postgresql.Database("my-database")
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
postgresql "github.com/pulumi/pulumi-postgresql/sdk/v3/go/postgresql"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
myDb, err := postgresql.NewDatabase(ctx, "my-database", &postgresql.DatabaseArgs{})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Threading.Tasks;
using Pulumi;
using Pulumi.Postgresql;
class Program
{
static Task Main() =>
Deployment.Run(() => {
mydatabase = new Database("my-database", new DatabaseArgs{});
});
}