published on Friday, Apr 10, 2026 by Pulumi
published on Friday, Apr 10, 2026 by Pulumi
The postgresql.Schema resource creates and manages schema
objects within
a PostgreSQL database.
Usage
import * as pulumi from "@pulumi/pulumi";
import * as postgresql from "@pulumi/postgresql";
const appWww = new postgresql.Role("app_www", {name: "app_www"});
const appDba = new postgresql.Role("app_dba", {name: "app_dba"});
const appReleng = new postgresql.Role("app_releng", {name: "app_releng"});
const mySchema = new postgresql.Schema("my_schema", {
name: "my_schema",
owner: "postgres",
policies: [
{
usage: true,
role: appWww.name,
},
{
create: true,
usage: true,
role: appReleng.name,
},
{
createWithGrant: true,
usageWithGrant: true,
role: appDba.name,
},
],
});
import pulumi
import pulumi_postgresql as postgresql
app_www = postgresql.Role("app_www", name="app_www")
app_dba = postgresql.Role("app_dba", name="app_dba")
app_releng = postgresql.Role("app_releng", name="app_releng")
my_schema = postgresql.Schema("my_schema",
name="my_schema",
owner="postgres",
policies=[
{
"usage": True,
"role": app_www.name,
},
{
"create": True,
"usage": True,
"role": app_releng.name,
},
{
"create_with_grant": True,
"usage_with_grant": True,
"role": app_dba.name,
},
])
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 {
appWww, err := postgresql.NewRole(ctx, "app_www", &postgresql.RoleArgs{
Name: pulumi.String("app_www"),
})
if err != nil {
return err
}
appDba, err := postgresql.NewRole(ctx, "app_dba", &postgresql.RoleArgs{
Name: pulumi.String("app_dba"),
})
if err != nil {
return err
}
appReleng, err := postgresql.NewRole(ctx, "app_releng", &postgresql.RoleArgs{
Name: pulumi.String("app_releng"),
})
if err != nil {
return err
}
_, err = postgresql.NewSchema(ctx, "my_schema", &postgresql.SchemaArgs{
Name: pulumi.String("my_schema"),
Owner: pulumi.String("postgres"),
Policies: postgresql.SchemaPolicyArray{
&postgresql.SchemaPolicyArgs{
Usage: pulumi.Bool(true),
Role: appWww.Name,
},
&postgresql.SchemaPolicyArgs{
Create: pulumi.Bool(true),
Usage: pulumi.Bool(true),
Role: appReleng.Name,
},
&postgresql.SchemaPolicyArgs{
CreateWithGrant: pulumi.Bool(true),
UsageWithGrant: pulumi.Bool(true),
Role: appDba.Name,
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using PostgreSql = Pulumi.PostgreSql;
return await Deployment.RunAsync(() =>
{
var appWww = new PostgreSql.Index.Role("app_www", new()
{
Name = "app_www",
});
var appDba = new PostgreSql.Index.Role("app_dba", new()
{
Name = "app_dba",
});
var appReleng = new PostgreSql.Index.Role("app_releng", new()
{
Name = "app_releng",
});
var mySchema = new PostgreSql.Index.Schema("my_schema", new()
{
Name = "my_schema",
Owner = "postgres",
Policies = new[]
{
new PostgreSql.Inputs.SchemaPolicyArgs
{
Usage = true,
Role = appWww.Name,
},
new PostgreSql.Inputs.SchemaPolicyArgs
{
Create = true,
Usage = true,
Role = appReleng.Name,
},
new PostgreSql.Inputs.SchemaPolicyArgs
{
CreateWithGrant = true,
UsageWithGrant = true,
Role = appDba.Name,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.postgresql.Role;
import com.pulumi.postgresql.RoleArgs;
import com.pulumi.postgresql.Schema;
import com.pulumi.postgresql.SchemaArgs;
import com.pulumi.postgresql.inputs.SchemaPolicyArgs;
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 appWww = new Role("appWww", RoleArgs.builder()
.name("app_www")
.build());
var appDba = new Role("appDba", RoleArgs.builder()
.name("app_dba")
.build());
var appReleng = new Role("appReleng", RoleArgs.builder()
.name("app_releng")
.build());
var mySchema = new Schema("mySchema", SchemaArgs.builder()
.name("my_schema")
.owner("postgres")
.policies(
SchemaPolicyArgs.builder()
.usage(true)
.role(appWww.name())
.build(),
SchemaPolicyArgs.builder()
.create(true)
.usage(true)
.role(appReleng.name())
.build(),
SchemaPolicyArgs.builder()
.createWithGrant(true)
.usageWithGrant(true)
.role(appDba.name())
.build())
.build());
}
}
resources:
appWww:
type: postgresql:Role
name: app_www
properties:
name: app_www
appDba:
type: postgresql:Role
name: app_dba
properties:
name: app_dba
appReleng:
type: postgresql:Role
name: app_releng
properties:
name: app_releng
mySchema:
type: postgresql:Schema
name: my_schema
properties:
name: my_schema
owner: postgres
policies:
- usage: true
role: ${appWww.name}
- create: true
usage: true
role: ${appReleng.name}
- createWithGrant: true
usageWithGrant: true
role: ${appDba.name}
Create Schema Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Schema(name: string, args?: SchemaArgs, opts?: CustomResourceOptions);@overload
def Schema(resource_name: str,
args: Optional[SchemaArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Schema(resource_name: str,
opts: Optional[ResourceOptions] = None,
database: Optional[str] = None,
drop_cascade: Optional[bool] = None,
if_not_exists: Optional[bool] = None,
name: Optional[str] = None,
owner: Optional[str] = None,
policies: Optional[Sequence[SchemaPolicyArgs]] = None)func NewSchema(ctx *Context, name string, args *SchemaArgs, opts ...ResourceOption) (*Schema, error)public Schema(string name, SchemaArgs? args = null, CustomResourceOptions? opts = null)
public Schema(String name, SchemaArgs args)
public Schema(String name, SchemaArgs args, CustomResourceOptions options)
type: postgresql:Schema
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SchemaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SchemaArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SchemaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaArgs
- 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 schemaResource = new PostgreSql.Schema("schemaResource", new()
{
Database = "string",
DropCascade = false,
IfNotExists = false,
Name = "string",
Owner = "string",
});
example, err := postgresql.NewSchema(ctx, "schemaResource", &postgresql.SchemaArgs{
Database: pulumi.String("string"),
DropCascade: pulumi.Bool(false),
IfNotExists: pulumi.Bool(false),
Name: pulumi.String("string"),
Owner: pulumi.String("string"),
})
var schemaResource = new Schema("schemaResource", SchemaArgs.builder()
.database("string")
.dropCascade(false)
.ifNotExists(false)
.name("string")
.owner("string")
.build());
schema_resource = postgresql.Schema("schemaResource",
database="string",
drop_cascade=False,
if_not_exists=False,
name="string",
owner="string")
const schemaResource = new postgresql.Schema("schemaResource", {
database: "string",
dropCascade: false,
ifNotExists: false,
name: "string",
owner: "string",
});
type: postgresql:Schema
properties:
database: string
dropCascade: false
ifNotExists: false
name: string
owner: string
Schema 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 Schema resource accepts the following input properties:
- Database string
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - Drop
Cascade bool - When true, will also drop all the objects that are contained in the schema. (Default: false)
- If
Not boolExists - When true, use the existing schema if it exists. (Default: true)
- Name string
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- Owner string
- The ROLE who owns the schema.
- Policies
List<Pulumi.
Postgre Sql. Inputs. Schema Policy> - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- Database string
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - Drop
Cascade bool - When true, will also drop all the objects that are contained in the schema. (Default: false)
- If
Not boolExists - When true, use the existing schema if it exists. (Default: true)
- Name string
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- Owner string
- The ROLE who owns the schema.
- Policies
[]Schema
Policy Args - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database String
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop
Cascade Boolean - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if
Not BooleanExists - When true, use the existing schema if it exists. (Default: true)
- name String
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner String
- The ROLE who owns the schema.
- policies
List<Schema
Policy> - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database string
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop
Cascade boolean - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if
Not booleanExists - When true, use the existing schema if it exists. (Default: true)
- name string
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner string
- The ROLE who owns the schema.
- policies
Schema
Policy[] - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database str
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop_
cascade bool - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if_
not_ boolexists - When true, use the existing schema if it exists. (Default: true)
- name str
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner str
- The ROLE who owns the schema.
- policies
Sequence[Schema
Policy Args] - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database String
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop
Cascade Boolean - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if
Not BooleanExists - When true, use the existing schema if it exists. (Default: true)
- name String
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner String
- The ROLE who owns the schema.
- policies List<Property Map>
- Can be specified multiple times for each policy. Each policy block supports fields documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the Schema 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 Schema Resource
Get an existing Schema 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?: SchemaState, opts?: CustomResourceOptions): Schema@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
database: Optional[str] = None,
drop_cascade: Optional[bool] = None,
if_not_exists: Optional[bool] = None,
name: Optional[str] = None,
owner: Optional[str] = None,
policies: Optional[Sequence[SchemaPolicyArgs]] = None) -> Schemafunc GetSchema(ctx *Context, name string, id IDInput, state *SchemaState, opts ...ResourceOption) (*Schema, error)public static Schema Get(string name, Input<string> id, SchemaState? state, CustomResourceOptions? opts = null)public static Schema get(String name, Output<String> id, SchemaState state, CustomResourceOptions options)resources: _: type: postgresql:Schema get: id: ${id}- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Database string
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - Drop
Cascade bool - When true, will also drop all the objects that are contained in the schema. (Default: false)
- If
Not boolExists - When true, use the existing schema if it exists. (Default: true)
- Name string
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- Owner string
- The ROLE who owns the schema.
- Policies
List<Pulumi.
Postgre Sql. Inputs. Schema Policy> - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- Database string
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - Drop
Cascade bool - When true, will also drop all the objects that are contained in the schema. (Default: false)
- If
Not boolExists - When true, use the existing schema if it exists. (Default: true)
- Name string
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- Owner string
- The ROLE who owns the schema.
- Policies
[]Schema
Policy Args - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database String
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop
Cascade Boolean - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if
Not BooleanExists - When true, use the existing schema if it exists. (Default: true)
- name String
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner String
- The ROLE who owns the schema.
- policies
List<Schema
Policy> - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database string
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop
Cascade boolean - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if
Not booleanExists - When true, use the existing schema if it exists. (Default: true)
- name string
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner string
- The ROLE who owns the schema.
- policies
Schema
Policy[] - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database str
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop_
cascade bool - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if_
not_ boolexists - When true, use the existing schema if it exists. (Default: true)
- name str
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner str
- The ROLE who owns the schema.
- policies
Sequence[Schema
Policy Args] - Can be specified multiple times for each policy. Each policy block supports fields documented below.
- database String
- The DATABASE in which where this schema will be created. (Default: The database used by your
providerconfiguration) - drop
Cascade Boolean - When true, will also drop all the objects that are contained in the schema. (Default: false)
- if
Not BooleanExists - When true, use the existing schema if it exists. (Default: true)
- name String
- The name of the schema. Must be unique in the PostgreSQL database instance where it is configured.
- owner String
- The ROLE who owns the schema.
- policies List<Property Map>
- Can be specified multiple times for each policy. Each policy block supports fields documented below.
Supporting Types
SchemaPolicy, SchemaPolicyArgs
- Create bool
- Should the specified ROLE have CREATE privileges to the specified SCHEMA.
- Create
With boolGrant - Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.
- Role string
- The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the
PUBLICrole. - Usage bool
- Should the specified ROLE have USAGE privileges to the specified SCHEMA.
- Usage
With boolGrant Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.
NOTE on
policy: The permissions of a role specified in multiple policy blocks is cumulative. For example, if the same role is specified in two differentpolicyeach with different permissions (e.g.createandusageWithGrant, respectively), then the specified role with have bothcreateandusageWithGrantprivileges.
- Create bool
- Should the specified ROLE have CREATE privileges to the specified SCHEMA.
- Create
With boolGrant - Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.
- Role string
- The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the
PUBLICrole. - Usage bool
- Should the specified ROLE have USAGE privileges to the specified SCHEMA.
- Usage
With boolGrant Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.
NOTE on
policy: The permissions of a role specified in multiple policy blocks is cumulative. For example, if the same role is specified in two differentpolicyeach with different permissions (e.g.createandusageWithGrant, respectively), then the specified role with have bothcreateandusageWithGrantprivileges.
- create Boolean
- Should the specified ROLE have CREATE privileges to the specified SCHEMA.
- create
With BooleanGrant - Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.
- role String
- The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the
PUBLICrole. - usage Boolean
- Should the specified ROLE have USAGE privileges to the specified SCHEMA.
- usage
With BooleanGrant Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.
NOTE on
policy: The permissions of a role specified in multiple policy blocks is cumulative. For example, if the same role is specified in two differentpolicyeach with different permissions (e.g.createandusageWithGrant, respectively), then the specified role with have bothcreateandusageWithGrantprivileges.
- create boolean
- Should the specified ROLE have CREATE privileges to the specified SCHEMA.
- create
With booleanGrant - Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.
- role string
- The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the
PUBLICrole. - usage boolean
- Should the specified ROLE have USAGE privileges to the specified SCHEMA.
- usage
With booleanGrant Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.
NOTE on
policy: The permissions of a role specified in multiple policy blocks is cumulative. For example, if the same role is specified in two differentpolicyeach with different permissions (e.g.createandusageWithGrant, respectively), then the specified role with have bothcreateandusageWithGrantprivileges.
- create bool
- Should the specified ROLE have CREATE privileges to the specified SCHEMA.
- create_
with_ boolgrant - Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.
- role str
- The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the
PUBLICrole. - usage bool
- Should the specified ROLE have USAGE privileges to the specified SCHEMA.
- usage_
with_ boolgrant Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.
NOTE on
policy: The permissions of a role specified in multiple policy blocks is cumulative. For example, if the same role is specified in two differentpolicyeach with different permissions (e.g.createandusageWithGrant, respectively), then the specified role with have bothcreateandusageWithGrantprivileges.
- create Boolean
- Should the specified ROLE have CREATE privileges to the specified SCHEMA.
- create
With BooleanGrant - Should the specified ROLE have CREATE privileges to the specified SCHEMA and the ability to GRANT the CREATE privilege to other ROLEs.
- role String
- The ROLE who is receiving the policy. If this value is empty or not specified it implies the policy is referring to the
PUBLICrole. - usage Boolean
- Should the specified ROLE have USAGE privileges to the specified SCHEMA.
- usage
With BooleanGrant Should the specified ROLE have USAGE privileges to the specified SCHEMA and the ability to GRANT the USAGE privilege to other ROLEs.
NOTE on
policy: The permissions of a role specified in multiple policy blocks is cumulative. For example, if the same role is specified in two differentpolicyeach with different permissions (e.g.createandusageWithGrant, respectively), then the specified role with have bothcreateandusageWithGrantprivileges.
Import
Example
postgresql.Schema supports importing resources. Supposing the following
Terraform:
import * as pulumi from "@pulumi/pulumi";
import * as postgresql from "@pulumi/postgresql";
const _public = new postgresql.Schema("public", {name: "public"});
const schemaFoo = new postgresql.Schema("schema_foo", {
name: "my_schema",
owner: "postgres",
policies: [{
usage: true,
}],
});
import pulumi
import pulumi_postgresql as postgresql
public = postgresql.Schema("public", name="public")
schema_foo = postgresql.Schema("schema_foo",
name="my_schema",
owner="postgres",
policies=[{
"usage": True,
}])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using PostgreSql = Pulumi.PostgreSql;
return await Deployment.RunAsync(() =>
{
var @public = new PostgreSql.Index.Schema("public", new()
{
Name = "public",
});
var schemaFoo = new PostgreSql.Index.Schema("schema_foo", new()
{
Name = "my_schema",
Owner = "postgres",
Policies = new[]
{
new PostgreSql.Inputs.SchemaPolicyArgs
{
Usage = true,
},
},
});
});
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.NewSchema(ctx, "public", &postgresql.SchemaArgs{
Name: pulumi.String("public"),
})
if err != nil {
return err
}
_, err = postgresql.NewSchema(ctx, "schema_foo", &postgresql.SchemaArgs{
Name: pulumi.String("my_schema"),
Owner: pulumi.String("postgres"),
Policies: postgresql.SchemaPolicyArray{
&postgresql.SchemaPolicyArgs{
Usage: pulumi.Bool(true),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.postgresql.Schema;
import com.pulumi.postgresql.SchemaArgs;
import com.pulumi.postgresql.inputs.SchemaPolicyArgs;
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 public_ = new Schema("public", SchemaArgs.builder()
.name("public")
.build());
var schemaFoo = new Schema("schemaFoo", SchemaArgs.builder()
.name("my_schema")
.owner("postgres")
.policies(SchemaPolicyArgs.builder()
.usage(true)
.build())
.build());
}
}
resources:
public:
type: postgresql:Schema
properties:
name: public
schemaFoo:
type: postgresql:Schema
name: schema_foo
properties:
name: my_schema
owner: postgres
policies:
- usage: true
It is possible to import a postgresql.Schema resource with the following
command:
$ terraform import postgresql_schema.schema_foo my_database.my_schema
Where myDatabase is the name of the database containing the schema,
mySchema is the name of the schema in the PostgreSQL database and
postgresql_schema.schema_foo is the name of the resource whose state will be
populated as a result of the command.
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
postgresqlTerraform Provider.
published on Friday, Apr 10, 2026 by Pulumi
