1. Packages
  2. Supabase Provider
  3. API Docs
  4. Project
supabase 1.5.1 published on Wednesday, Jan 15, 2025 by supabase

supabase.Project

Explore with Pulumi AI

supabase logo
supabase 1.5.1 published on Wednesday, Jan 15, 2025 by supabase

    Project resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as supabase from "@pulumi/supabase";
    
    const test = new supabase.Project("test", {
        organizationId: "continued-brown-smelt",
        databasePassword: "bar",
        region: "us-east-1",
        instanceSize: "micro",
    });
    
    import pulumi
    import pulumi_supabase as supabase
    
    test = supabase.Project("test",
        organization_id="continued-brown-smelt",
        database_password="bar",
        region="us-east-1",
        instance_size="micro")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/supabase/supabase"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := supabase.NewProject(ctx, "test", &supabase.ProjectArgs{
    			OrganizationId:   pulumi.String("continued-brown-smelt"),
    			DatabasePassword: pulumi.String("bar"),
    			Region:           pulumi.String("us-east-1"),
    			InstanceSize:     pulumi.String("micro"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Supabase = Pulumi.Supabase;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Supabase.Project("test", new()
        {
            OrganizationId = "continued-brown-smelt",
            DatabasePassword = "bar",
            Region = "us-east-1",
            InstanceSize = "micro",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.supabase.Project;
    import com.pulumi.supabase.ProjectArgs;
    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 test = new Project("test", ProjectArgs.builder()
                .organizationId("continued-brown-smelt")
                .databasePassword("bar")
                .region("us-east-1")
                .instanceSize("micro")
                .build());
    
        }
    }
    
    resources:
      test:
        type: supabase:Project
        properties:
          organizationId: continued-brown-smelt
          databasePassword: bar
          region: us-east-1
          instanceSize: micro
    

    Create Project Resource

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

    Constructor syntax

    new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
    @overload
    def Project(resource_name: str,
                args: ProjectArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Project(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                database_password: Optional[str] = None,
                organization_id: Optional[str] = None,
                region: Optional[str] = None,
                instance_size: Optional[str] = None,
                name: Optional[str] = None)
    func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
    public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
    public Project(String name, ProjectArgs args)
    public Project(String name, ProjectArgs args, CustomResourceOptions options)
    
    type: supabase:Project
    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 ProjectArgs
    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 ProjectArgs
    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 ProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectArgs
    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 projectResource = new Supabase.Project("projectResource", new()
    {
        DatabasePassword = "string",
        OrganizationId = "string",
        Region = "string",
        InstanceSize = "string",
        Name = "string",
    });
    
    example, err := supabase.NewProject(ctx, "projectResource", &supabase.ProjectArgs{
    	DatabasePassword: pulumi.String("string"),
    	OrganizationId:   pulumi.String("string"),
    	Region:           pulumi.String("string"),
    	InstanceSize:     pulumi.String("string"),
    	Name:             pulumi.String("string"),
    })
    
    var projectResource = new Project("projectResource", ProjectArgs.builder()
        .databasePassword("string")
        .organizationId("string")
        .region("string")
        .instanceSize("string")
        .name("string")
        .build());
    
    project_resource = supabase.Project("projectResource",
        database_password="string",
        organization_id="string",
        region="string",
        instance_size="string",
        name="string")
    
    const projectResource = new supabase.Project("projectResource", {
        databasePassword: "string",
        organizationId: "string",
        region: "string",
        instanceSize: "string",
        name: "string",
    });
    
    type: supabase:Project
    properties:
        databasePassword: string
        instanceSize: string
        name: string
        organizationId: string
        region: string
    

    Project 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 Project resource accepts the following input properties:

    DatabasePassword string
    Password for the project database
    OrganizationId string
    Reference to the organization
    Region string
    Region where the project is located
    InstanceSize string
    Desired instance size of the project
    Name string
    Name of the project
    DatabasePassword string
    Password for the project database
    OrganizationId string
    Reference to the organization
    Region string
    Region where the project is located
    InstanceSize string
    Desired instance size of the project
    Name string
    Name of the project
    databasePassword String
    Password for the project database
    organizationId String
    Reference to the organization
    region String
    Region where the project is located
    instanceSize String
    Desired instance size of the project
    name String
    Name of the project
    databasePassword string
    Password for the project database
    organizationId string
    Reference to the organization
    region string
    Region where the project is located
    instanceSize string
    Desired instance size of the project
    name string
    Name of the project
    database_password str
    Password for the project database
    organization_id str
    Reference to the organization
    region str
    Region where the project is located
    instance_size str
    Desired instance size of the project
    name str
    Name of the project
    databasePassword String
    Password for the project database
    organizationId String
    Reference to the organization
    region String
    Region where the project is located
    instanceSize String
    Desired instance size of the project
    name String
    Name of the project

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Project 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 Project Resource

    Get an existing Project 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?: ProjectState, opts?: CustomResourceOptions): Project
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            database_password: Optional[str] = None,
            instance_size: Optional[str] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            region: Optional[str] = None) -> Project
    func GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)
    public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)
    public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)
    resources:  _:    type: supabase:Project    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.
    The following state arguments are supported:
    DatabasePassword string
    Password for the project database
    InstanceSize string
    Desired instance size of the project
    Name string
    Name of the project
    OrganizationId string
    Reference to the organization
    Region string
    Region where the project is located
    DatabasePassword string
    Password for the project database
    InstanceSize string
    Desired instance size of the project
    Name string
    Name of the project
    OrganizationId string
    Reference to the organization
    Region string
    Region where the project is located
    databasePassword String
    Password for the project database
    instanceSize String
    Desired instance size of the project
    name String
    Name of the project
    organizationId String
    Reference to the organization
    region String
    Region where the project is located
    databasePassword string
    Password for the project database
    instanceSize string
    Desired instance size of the project
    name string
    Name of the project
    organizationId string
    Reference to the organization
    region string
    Region where the project is located
    database_password str
    Password for the project database
    instance_size str
    Desired instance size of the project
    name str
    Name of the project
    organization_id str
    Reference to the organization
    region str
    Region where the project is located
    databasePassword String
    Password for the project database
    instanceSize String
    Desired instance size of the project
    name String
    Name of the project
    organizationId String
    Reference to the organization
    region String
    Region where the project is located

    Package Details

    Repository
    supabase supabase/terraform-provider-supabase
    License
    Notes
    This Pulumi package is based on the supabase Terraform Provider.
    supabase logo
    supabase 1.5.1 published on Wednesday, Jan 15, 2025 by supabase