1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. gpdb
  5. SupabaseProject
Alibaba Cloud v3.94.0 published on Tuesday, Feb 3, 2026 by Pulumi
alicloud logo
Alibaba Cloud v3.94.0 published on Tuesday, Feb 3, 2026 by Pulumi

    Provides a AnalyticDB for PostgreSQL (GPDB) Supabase Project resource.

    For information about AnalyticDB for PostgreSQL (GPDB) Supabase Project and how to use it, see What is Supabase Project.

    NOTE: Available since v1.266.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const _default = alicloud.vpc.getNetworks({
        nameRegex: "^default-NODELETING$",
    });
    const defaultGetSwitches = _default.then(_default => alicloud.vpc.getSwitches({
        vpcId: _default.ids?.[0],
        zoneId: "cn-hangzhou-j",
    }));
    const defaultSupabaseProject = new alicloud.gpdb.SupabaseProject("default", {
        projectSpec: "1C2G",
        zoneId: "cn-hangzhou-j",
        vpcId: _default.then(_default => _default.ids?.[0]),
        projectName: "supabase_example",
        securityIpLists: ["127.0.0.1"],
        vswitchId: defaultGetSwitches.then(defaultGetSwitches => defaultGetSwitches.ids?.[0]),
        diskPerformanceLevel: "PL0",
        storageSize: 1,
        accountPassword: "YourPassword123!",
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    default = alicloud.vpc.get_networks(name_regex="^default-NODELETING$")
    default_get_switches = alicloud.vpc.get_switches(vpc_id=default.ids[0],
        zone_id="cn-hangzhou-j")
    default_supabase_project = alicloud.gpdb.SupabaseProject("default",
        project_spec="1C2G",
        zone_id="cn-hangzhou-j",
        vpc_id=default.ids[0],
        project_name="supabase_example",
        security_ip_lists=["127.0.0.1"],
        vswitch_id=default_get_switches.ids[0],
        disk_performance_level="PL0",
        storage_size=1,
        account_password="YourPassword123!")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/gpdb"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_default, err := vpc.GetNetworks(ctx, &vpc.GetNetworksArgs{
    			NameRegex: pulumi.StringRef("^default-NODELETING$"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultGetSwitches, err := vpc.GetSwitches(ctx, &vpc.GetSwitchesArgs{
    			VpcId:  pulumi.StringRef(_default.Ids[0]),
    			ZoneId: pulumi.StringRef("cn-hangzhou-j"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = gpdb.NewSupabaseProject(ctx, "default", &gpdb.SupabaseProjectArgs{
    			ProjectSpec: pulumi.String("1C2G"),
    			ZoneId:      pulumi.String("cn-hangzhou-j"),
    			VpcId:       pulumi.String(_default.Ids[0]),
    			ProjectName: pulumi.String("supabase_example"),
    			SecurityIpLists: pulumi.StringArray{
    				pulumi.String("127.0.0.1"),
    			},
    			VswitchId:            pulumi.String(defaultGetSwitches.Ids[0]),
    			DiskPerformanceLevel: pulumi.String("PL0"),
    			StorageSize:          pulumi.Int(1),
    			AccountPassword:      pulumi.String("YourPassword123!"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var @default = AliCloud.Vpc.GetNetworks.Invoke(new()
        {
            NameRegex = "^default-NODELETING$",
        });
    
        var defaultGetSwitches = AliCloud.Vpc.GetSwitches.Invoke(new()
        {
            VpcId = @default.Apply(getNetworksResult => getNetworksResult.Ids[0]),
            ZoneId = "cn-hangzhou-j",
        });
    
        var defaultSupabaseProject = new AliCloud.Gpdb.SupabaseProject("default", new()
        {
            ProjectSpec = "1C2G",
            ZoneId = "cn-hangzhou-j",
            VpcId = @default.Apply(@default => @default.Apply(getNetworksResult => getNetworksResult.Ids[0])),
            ProjectName = "supabase_example",
            SecurityIpLists = new[]
            {
                "127.0.0.1",
            },
            VswitchId = defaultGetSwitches.Apply(getSwitchesResult => getSwitchesResult.Ids[0]),
            DiskPerformanceLevel = "PL0",
            StorageSize = 1,
            AccountPassword = "YourPassword123!",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.vpc.VpcFunctions;
    import com.pulumi.alicloud.vpc.inputs.GetNetworksArgs;
    import com.pulumi.alicloud.vpc.inputs.GetSwitchesArgs;
    import com.pulumi.alicloud.gpdb.SupabaseProject;
    import com.pulumi.alicloud.gpdb.SupabaseProjectArgs;
    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) {
            final var default = VpcFunctions.getNetworks(GetNetworksArgs.builder()
                .nameRegex("^default-NODELETING$")
                .build());
    
            final var defaultGetSwitches = VpcFunctions.getSwitches(GetSwitchesArgs.builder()
                .vpcId(default_.ids()[0])
                .zoneId("cn-hangzhou-j")
                .build());
    
            var defaultSupabaseProject = new SupabaseProject("defaultSupabaseProject", SupabaseProjectArgs.builder()
                .projectSpec("1C2G")
                .zoneId("cn-hangzhou-j")
                .vpcId(default_.ids()[0])
                .projectName("supabase_example")
                .securityIpLists("127.0.0.1")
                .vswitchId(defaultGetSwitches.ids()[0])
                .diskPerformanceLevel("PL0")
                .storageSize(1)
                .accountPassword("YourPassword123!")
                .build());
    
        }
    }
    
    resources:
      defaultSupabaseProject:
        type: alicloud:gpdb:SupabaseProject
        name: default
        properties:
          projectSpec: 1C2G
          zoneId: cn-hangzhou-j
          vpcId: ${default.ids[0]}
          projectName: supabase_example
          securityIpLists:
            - 127.0.0.1
          vswitchId: ${defaultGetSwitches.ids[0]}
          diskPerformanceLevel: PL0
          storageSize: '1'
          accountPassword: YourPassword123!
    variables:
      default:
        fn::invoke:
          function: alicloud:vpc:getNetworks
          arguments:
            nameRegex: ^default-NODELETING$
      defaultGetSwitches:
        fn::invoke:
          function: alicloud:vpc:getSwitches
          arguments:
            vpcId: ${default.ids[0]}
            zoneId: cn-hangzhou-j
    

    📚 Need more examples? VIEW MORE EXAMPLES

    Create SupabaseProject Resource

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

    Constructor syntax

    new SupabaseProject(name: string, args: SupabaseProjectArgs, opts?: CustomResourceOptions);
    @overload
    def SupabaseProject(resource_name: str,
                        args: SupabaseProjectArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def SupabaseProject(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        account_password: Optional[str] = None,
                        project_name: Optional[str] = None,
                        project_spec: Optional[str] = None,
                        security_ip_lists: Optional[Sequence[str]] = None,
                        vpc_id: Optional[str] = None,
                        vswitch_id: Optional[str] = None,
                        zone_id: Optional[str] = None,
                        disk_performance_level: Optional[str] = None,
                        storage_size: Optional[int] = None)
    func NewSupabaseProject(ctx *Context, name string, args SupabaseProjectArgs, opts ...ResourceOption) (*SupabaseProject, error)
    public SupabaseProject(string name, SupabaseProjectArgs args, CustomResourceOptions? opts = null)
    public SupabaseProject(String name, SupabaseProjectArgs args)
    public SupabaseProject(String name, SupabaseProjectArgs args, CustomResourceOptions options)
    
    type: alicloud:gpdb:SupabaseProject
    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 SupabaseProjectArgs
    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 SupabaseProjectArgs
    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 SupabaseProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SupabaseProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SupabaseProjectArgs
    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 supabaseProjectResource = new AliCloud.Gpdb.SupabaseProject("supabaseProjectResource", new()
    {
        AccountPassword = "string",
        ProjectName = "string",
        ProjectSpec = "string",
        SecurityIpLists = new[]
        {
            "string",
        },
        VpcId = "string",
        VswitchId = "string",
        ZoneId = "string",
        DiskPerformanceLevel = "string",
        StorageSize = 0,
    });
    
    example, err := gpdb.NewSupabaseProject(ctx, "supabaseProjectResource", &gpdb.SupabaseProjectArgs{
    	AccountPassword: pulumi.String("string"),
    	ProjectName:     pulumi.String("string"),
    	ProjectSpec:     pulumi.String("string"),
    	SecurityIpLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	VpcId:                pulumi.String("string"),
    	VswitchId:            pulumi.String("string"),
    	ZoneId:               pulumi.String("string"),
    	DiskPerformanceLevel: pulumi.String("string"),
    	StorageSize:          pulumi.Int(0),
    })
    
    var supabaseProjectResource = new SupabaseProject("supabaseProjectResource", SupabaseProjectArgs.builder()
        .accountPassword("string")
        .projectName("string")
        .projectSpec("string")
        .securityIpLists("string")
        .vpcId("string")
        .vswitchId("string")
        .zoneId("string")
        .diskPerformanceLevel("string")
        .storageSize(0)
        .build());
    
    supabase_project_resource = alicloud.gpdb.SupabaseProject("supabaseProjectResource",
        account_password="string",
        project_name="string",
        project_spec="string",
        security_ip_lists=["string"],
        vpc_id="string",
        vswitch_id="string",
        zone_id="string",
        disk_performance_level="string",
        storage_size=0)
    
    const supabaseProjectResource = new alicloud.gpdb.SupabaseProject("supabaseProjectResource", {
        accountPassword: "string",
        projectName: "string",
        projectSpec: "string",
        securityIpLists: ["string"],
        vpcId: "string",
        vswitchId: "string",
        zoneId: "string",
        diskPerformanceLevel: "string",
        storageSize: 0,
    });
    
    type: alicloud:gpdb:SupabaseProject
    properties:
        accountPassword: string
        diskPerformanceLevel: string
        projectName: string
        projectSpec: string
        securityIpLists:
            - string
        storageSize: 0
        vpcId: string
        vswitchId: string
        zoneId: string
    

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

    AccountPassword string
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    ProjectName string
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    ProjectSpec string
    The performance level of the Supabase instance.
    SecurityIpLists List<string>
    The IP address whitelist.
    VpcId string
    The VPC ID.
    VswitchId string
    The vSwitch ID.
    ZoneId string
    The Zone ID.
    DiskPerformanceLevel string
    cloud disk performance level
    StorageSize int
    The storage capacity of the instance. Unit: GB.
    AccountPassword string
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    ProjectName string
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    ProjectSpec string
    The performance level of the Supabase instance.
    SecurityIpLists []string
    The IP address whitelist.
    VpcId string
    The VPC ID.
    VswitchId string
    The vSwitch ID.
    ZoneId string
    The Zone ID.
    DiskPerformanceLevel string
    cloud disk performance level
    StorageSize int
    The storage capacity of the instance. Unit: GB.
    accountPassword String
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    projectName String
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    projectSpec String
    The performance level of the Supabase instance.
    securityIpLists List<String>
    The IP address whitelist.
    vpcId String
    The VPC ID.
    vswitchId String
    The vSwitch ID.
    zoneId String
    The Zone ID.
    diskPerformanceLevel String
    cloud disk performance level
    storageSize Integer
    The storage capacity of the instance. Unit: GB.
    accountPassword string
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    projectName string
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    projectSpec string
    The performance level of the Supabase instance.
    securityIpLists string[]
    The IP address whitelist.
    vpcId string
    The VPC ID.
    vswitchId string
    The vSwitch ID.
    zoneId string
    The Zone ID.
    diskPerformanceLevel string
    cloud disk performance level
    storageSize number
    The storage capacity of the instance. Unit: GB.
    account_password str
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    project_name str
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    project_spec str
    The performance level of the Supabase instance.
    security_ip_lists Sequence[str]
    The IP address whitelist.
    vpc_id str
    The VPC ID.
    vswitch_id str
    The vSwitch ID.
    zone_id str
    The Zone ID.
    disk_performance_level str
    cloud disk performance level
    storage_size int
    The storage capacity of the instance. Unit: GB.
    accountPassword String
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    projectName String
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    projectSpec String
    The performance level of the Supabase instance.
    securityIpLists List<String>
    The IP address whitelist.
    vpcId String
    The VPC ID.
    vswitchId String
    The vSwitch ID.
    zoneId String
    The Zone ID.
    diskPerformanceLevel String
    cloud disk performance level
    storageSize Number
    The storage capacity of the instance. Unit: GB.

    Outputs

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

    CreateTime string
    The creation time of the resource
    Id string
    The provider-assigned unique ID for this managed resource.
    RegionId string
    The region ID.
    Status string
    The status of the Supabase instance.
    CreateTime string
    The creation time of the resource
    Id string
    The provider-assigned unique ID for this managed resource.
    RegionId string
    The region ID.
    Status string
    The status of the Supabase instance.
    createTime String
    The creation time of the resource
    id String
    The provider-assigned unique ID for this managed resource.
    regionId String
    The region ID.
    status String
    The status of the Supabase instance.
    createTime string
    The creation time of the resource
    id string
    The provider-assigned unique ID for this managed resource.
    regionId string
    The region ID.
    status string
    The status of the Supabase instance.
    create_time str
    The creation time of the resource
    id str
    The provider-assigned unique ID for this managed resource.
    region_id str
    The region ID.
    status str
    The status of the Supabase instance.
    createTime String
    The creation time of the resource
    id String
    The provider-assigned unique ID for this managed resource.
    regionId String
    The region ID.
    status String
    The status of the Supabase instance.

    Look up Existing SupabaseProject Resource

    Get an existing SupabaseProject 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?: SupabaseProjectState, opts?: CustomResourceOptions): SupabaseProject
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_password: Optional[str] = None,
            create_time: Optional[str] = None,
            disk_performance_level: Optional[str] = None,
            project_name: Optional[str] = None,
            project_spec: Optional[str] = None,
            region_id: Optional[str] = None,
            security_ip_lists: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            storage_size: Optional[int] = None,
            vpc_id: Optional[str] = None,
            vswitch_id: Optional[str] = None,
            zone_id: Optional[str] = None) -> SupabaseProject
    func GetSupabaseProject(ctx *Context, name string, id IDInput, state *SupabaseProjectState, opts ...ResourceOption) (*SupabaseProject, error)
    public static SupabaseProject Get(string name, Input<string> id, SupabaseProjectState? state, CustomResourceOptions? opts = null)
    public static SupabaseProject get(String name, Output<String> id, SupabaseProjectState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:gpdb:SupabaseProject    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:
    AccountPassword string
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    CreateTime string
    The creation time of the resource
    DiskPerformanceLevel string
    cloud disk performance level
    ProjectName string
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    ProjectSpec string
    The performance level of the Supabase instance.
    RegionId string
    The region ID.
    SecurityIpLists List<string>
    The IP address whitelist.
    Status string
    The status of the Supabase instance.
    StorageSize int
    The storage capacity of the instance. Unit: GB.
    VpcId string
    The VPC ID.
    VswitchId string
    The vSwitch ID.
    ZoneId string
    The Zone ID.
    AccountPassword string
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    CreateTime string
    The creation time of the resource
    DiskPerformanceLevel string
    cloud disk performance level
    ProjectName string
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    ProjectSpec string
    The performance level of the Supabase instance.
    RegionId string
    The region ID.
    SecurityIpLists []string
    The IP address whitelist.
    Status string
    The status of the Supabase instance.
    StorageSize int
    The storage capacity of the instance. Unit: GB.
    VpcId string
    The VPC ID.
    VswitchId string
    The vSwitch ID.
    ZoneId string
    The Zone ID.
    accountPassword String
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    createTime String
    The creation time of the resource
    diskPerformanceLevel String
    cloud disk performance level
    projectName String
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    projectSpec String
    The performance level of the Supabase instance.
    regionId String
    The region ID.
    securityIpLists List<String>
    The IP address whitelist.
    status String
    The status of the Supabase instance.
    storageSize Integer
    The storage capacity of the instance. Unit: GB.
    vpcId String
    The VPC ID.
    vswitchId String
    The vSwitch ID.
    zoneId String
    The Zone ID.
    accountPassword string
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    createTime string
    The creation time of the resource
    diskPerformanceLevel string
    cloud disk performance level
    projectName string
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    projectSpec string
    The performance level of the Supabase instance.
    regionId string
    The region ID.
    securityIpLists string[]
    The IP address whitelist.
    status string
    The status of the Supabase instance.
    storageSize number
    The storage capacity of the instance. Unit: GB.
    vpcId string
    The VPC ID.
    vswitchId string
    The vSwitch ID.
    zoneId string
    The Zone ID.
    account_password str
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    create_time str
    The creation time of the resource
    disk_performance_level str
    cloud disk performance level
    project_name str
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    project_spec str
    The performance level of the Supabase instance.
    region_id str
    The region ID.
    security_ip_lists Sequence[str]
    The IP address whitelist.
    status str
    The status of the Supabase instance.
    storage_size int
    The storage capacity of the instance. Unit: GB.
    vpc_id str
    The VPC ID.
    vswitch_id str
    The vSwitch ID.
    zone_id str
    The Zone ID.
    accountPassword String
    The password for the initial account.

    • Consists of three or more of uppercase letters, lowercase letters, numbers, and special characters.
    • Support for special characters:! @#$%^& *()_+-=
    • Length is 8~32 characters.
    createTime String
    The creation time of the resource
    diskPerformanceLevel String
    cloud disk performance level
    projectName String
    The project name. The naming rules are as follows:

    • 1~128 characters in length.
    • Can only contain English letters, numbers, dashes (-) and underscores (_).
    • Must begin with an English letter or an underscore (_).
    projectSpec String
    The performance level of the Supabase instance.
    regionId String
    The region ID.
    securityIpLists List<String>
    The IP address whitelist.
    status String
    The status of the Supabase instance.
    storageSize Number
    The storage capacity of the instance. Unit: GB.
    vpcId String
    The VPC ID.
    vswitchId String
    The vSwitch ID.
    zoneId String
    The Zone ID.

    Import

    AnalyticDB for PostgreSQL (GPDB) Supabase Project can be imported using the id, e.g.

    $ pulumi import alicloud:gpdb/supabaseProject:SupabaseProject example <id>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.94.0 published on Tuesday, Feb 3, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate