1. Packages
  2. Postgresql Provider
  3. API Docs
  4. Extension
PostgreSQL v3.15.1 published on Saturday, Mar 15, 2025 by Pulumi

postgresql.Extension

Explore with Pulumi AI

The postgresql.Extension resource creates and manages an extension on a PostgreSQL server.

Usage

import * as pulumi from "@pulumi/pulumi";
import * as postgresql from "@pulumi/postgresql";

const myExtension = new postgresql.Extension("my_extension", {name: "pg_trgm"});
Copy
import pulumi
import pulumi_postgresql as postgresql

my_extension = postgresql.Extension("my_extension", name="pg_trgm")
Copy
package main

import (
	"github.com/pulumi/pulumi-postgresql/sdk/v3/go/postgresql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := postgresql.NewExtension(ctx, "my_extension", &postgresql.ExtensionArgs{
			Name: pulumi.String("pg_trgm"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using PostgreSql = Pulumi.PostgreSql;

return await Deployment.RunAsync(() => 
{
    var myExtension = new PostgreSql.Extension("my_extension", new()
    {
        Name = "pg_trgm",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.postgresql.Extension;
import com.pulumi.postgresql.ExtensionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var myExtension = new Extension("myExtension", ExtensionArgs.builder()
            .name("pg_trgm")
            .build());

    }
}
Copy
resources:
  myExtension:
    type: postgresql:Extension
    name: my_extension
    properties:
      name: pg_trgm
Copy

Create Extension Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Extension(name: string, args?: ExtensionArgs, opts?: CustomResourceOptions);
@overload
def Extension(resource_name: str,
              args: Optional[ExtensionArgs] = None,
              opts: Optional[ResourceOptions] = None)

@overload
def Extension(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              create_cascade: Optional[bool] = None,
              database: Optional[str] = None,
              drop_cascade: Optional[bool] = None,
              name: Optional[str] = None,
              schema: Optional[str] = None,
              version: Optional[str] = None)
func NewExtension(ctx *Context, name string, args *ExtensionArgs, opts ...ResourceOption) (*Extension, error)
public Extension(string name, ExtensionArgs? args = null, CustomResourceOptions? opts = null)
public Extension(String name, ExtensionArgs args)
public Extension(String name, ExtensionArgs args, CustomResourceOptions options)
type: postgresql:Extension
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ExtensionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ExtensionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ExtensionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ExtensionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExtensionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var extensionResource = new PostgreSql.Extension("extensionResource", new()
{
    CreateCascade = false,
    Database = "string",
    DropCascade = false,
    Name = "string",
    Schema = "string",
    Version = "string",
});
Copy
example, err := postgresql.NewExtension(ctx, "extensionResource", &postgresql.ExtensionArgs{
	CreateCascade: pulumi.Bool(false),
	Database:      pulumi.String("string"),
	DropCascade:   pulumi.Bool(false),
	Name:          pulumi.String("string"),
	Schema:        pulumi.String("string"),
	Version:       pulumi.String("string"),
})
Copy
var extensionResource = new Extension("extensionResource", ExtensionArgs.builder()
    .createCascade(false)
    .database("string")
    .dropCascade(false)
    .name("string")
    .schema("string")
    .version("string")
    .build());
Copy
extension_resource = postgresql.Extension("extensionResource",
    create_cascade=False,
    database="string",
    drop_cascade=False,
    name="string",
    schema="string",
    version="string")
Copy
const extensionResource = new postgresql.Extension("extensionResource", {
    createCascade: false,
    database: "string",
    dropCascade: false,
    name: "string",
    schema: "string",
    version: "string",
});
Copy
type: postgresql:Extension
properties:
    createCascade: false
    database: string
    dropCascade: false
    name: string
    schema: string
    version: string
Copy

Extension Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Extension resource accepts the following input properties:

CreateCascade bool
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
Database Changes to this property will trigger replacement. string
Which database to create the extension on. Defaults to provider database.
DropCascade bool
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
Name Changes to this property will trigger replacement. string
The name of the extension.
Schema string
Sets the schema of an extension.
Version string
Sets the version number of the extension.
CreateCascade bool
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
Database Changes to this property will trigger replacement. string
Which database to create the extension on. Defaults to provider database.
DropCascade bool
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
Name Changes to this property will trigger replacement. string
The name of the extension.
Schema string
Sets the schema of an extension.
Version string
Sets the version number of the extension.
createCascade Boolean
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. String
Which database to create the extension on. Defaults to provider database.
dropCascade Boolean
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. String
The name of the extension.
schema String
Sets the schema of an extension.
version String
Sets the version number of the extension.
createCascade boolean
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. string
Which database to create the extension on. Defaults to provider database.
dropCascade boolean
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. string
The name of the extension.
schema string
Sets the schema of an extension.
version string
Sets the version number of the extension.
create_cascade bool
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. str
Which database to create the extension on. Defaults to provider database.
drop_cascade bool
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. str
The name of the extension.
schema str
Sets the schema of an extension.
version str
Sets the version number of the extension.
createCascade Boolean
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. String
Which database to create the extension on. Defaults to provider database.
dropCascade Boolean
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. String
The name of the extension.
schema String
Sets the schema of an extension.
version String
Sets the version number of the extension.

Outputs

All input properties are implicitly available as output properties. Additionally, the Extension resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Extension Resource

Get an existing Extension resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ExtensionState, opts?: CustomResourceOptions): Extension
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        create_cascade: Optional[bool] = None,
        database: Optional[str] = None,
        drop_cascade: Optional[bool] = None,
        name: Optional[str] = None,
        schema: Optional[str] = None,
        version: Optional[str] = None) -> Extension
func GetExtension(ctx *Context, name string, id IDInput, state *ExtensionState, opts ...ResourceOption) (*Extension, error)
public static Extension Get(string name, Input<string> id, ExtensionState? state, CustomResourceOptions? opts = null)
public static Extension get(String name, Output<String> id, ExtensionState state, CustomResourceOptions options)
resources:  _:    type: postgresql:Extension    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CreateCascade bool
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
Database Changes to this property will trigger replacement. string
Which database to create the extension on. Defaults to provider database.
DropCascade bool
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
Name Changes to this property will trigger replacement. string
The name of the extension.
Schema string
Sets the schema of an extension.
Version string
Sets the version number of the extension.
CreateCascade bool
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
Database Changes to this property will trigger replacement. string
Which database to create the extension on. Defaults to provider database.
DropCascade bool
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
Name Changes to this property will trigger replacement. string
The name of the extension.
Schema string
Sets the schema of an extension.
Version string
Sets the version number of the extension.
createCascade Boolean
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. String
Which database to create the extension on. Defaults to provider database.
dropCascade Boolean
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. String
The name of the extension.
schema String
Sets the schema of an extension.
version String
Sets the version number of the extension.
createCascade boolean
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. string
Which database to create the extension on. Defaults to provider database.
dropCascade boolean
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. string
The name of the extension.
schema string
Sets the schema of an extension.
version string
Sets the version number of the extension.
create_cascade bool
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. str
Which database to create the extension on. Defaults to provider database.
drop_cascade bool
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. str
The name of the extension.
schema str
Sets the schema of an extension.
version str
Sets the version number of the extension.
createCascade Boolean
When true, will also create any extensions that this extension depends on that are not already installed. (Default: false)
database Changes to this property will trigger replacement. String
Which database to create the extension on. Defaults to provider database.
dropCascade Boolean
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
name Changes to this property will trigger replacement. String
The name of the extension.
schema String
Sets the schema of an extension.
version String
Sets the version number of the extension.

Import

PostgreSQL Extensions can be imported using the database name and the extension’s resource name, e.g.

$ pulumi import postgresql:index/extension:Extension uuid_ossp example-database.uuid-ossp`
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
PostgreSQL pulumi/pulumi-postgresql
License
Apache-2.0
Notes
This Pulumi package is based on the postgresql Terraform Provider.