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:
- Account
Password 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.
- Project
Name 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 (_).
- Project
Spec string - The performance level of the Supabase instance.
- Security
Ip List<string>Lists - The IP address whitelist.
- Vpc
Id string - The VPC ID.
- Vswitch
Id string - The vSwitch ID.
- Zone
Id string - The Zone ID.
- Disk
Performance stringLevel - cloud disk performance level
- Storage
Size int - The storage capacity of the instance. Unit: GB.
- Account
Password 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.
- Project
Name 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 (_).
- Project
Spec string - The performance level of the Supabase instance.
- Security
Ip []stringLists - The IP address whitelist.
- Vpc
Id string - The VPC ID.
- Vswitch
Id string - The vSwitch ID.
- Zone
Id string - The Zone ID.
- Disk
Performance stringLevel - cloud disk performance level
- Storage
Size int - The storage capacity of the instance. Unit: GB.
- account
Password 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.
- project
Name 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 (_).
- project
Spec String - The performance level of the Supabase instance.
- security
Ip List<String>Lists - The IP address whitelist.
- vpc
Id String - The VPC ID.
- vswitch
Id String - The vSwitch ID.
- zone
Id String - The Zone ID.
- disk
Performance StringLevel - cloud disk performance level
- storage
Size Integer - The storage capacity of the instance. Unit: GB.
- account
Password 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.
- project
Name 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 (_).
- project
Spec string - The performance level of the Supabase instance.
- security
Ip string[]Lists - The IP address whitelist.
- vpc
Id string - The VPC ID.
- vswitch
Id string - The vSwitch ID.
- zone
Id string - The Zone ID.
- disk
Performance stringLevel - cloud disk performance level
- storage
Size 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_ Sequence[str]lists - The IP address whitelist.
- vpc_
id str - The VPC ID.
- vswitch_
id str - The vSwitch ID.
- zone_
id str - The Zone ID.
- disk_
performance_ strlevel - cloud disk performance level
- storage_
size int - The storage capacity of the instance. Unit: GB.
- account
Password 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.
- project
Name 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 (_).
- project
Spec String - The performance level of the Supabase instance.
- security
Ip List<String>Lists - The IP address whitelist.
- vpc
Id String - The VPC ID.
- vswitch
Id String - The vSwitch ID.
- zone
Id String - The Zone ID.
- disk
Performance StringLevel - cloud disk performance level
- storage
Size 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:
- Create
Time string - The creation time of the resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The region ID.
- Status string
- The status of the Supabase instance.
- Create
Time string - The creation time of the resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The region ID.
- Status string
- The status of the Supabase instance.
- create
Time String - The creation time of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The region ID.
- status String
- The status of the Supabase instance.
- create
Time string - The creation time of the resource
- id string
- The provider-assigned unique ID for this managed resource.
- region
Id 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.
- create
Time String - The creation time of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id 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) -> SupabaseProjectfunc 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.
- Account
Password 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.
- Create
Time string - The creation time of the resource
- Disk
Performance stringLevel - cloud disk performance level
- Project
Name 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 (_).
- Project
Spec string - The performance level of the Supabase instance.
- Region
Id string - The region ID.
- Security
Ip List<string>Lists - The IP address whitelist.
- Status string
- The status of the Supabase instance.
- Storage
Size int - The storage capacity of the instance. Unit: GB.
- Vpc
Id string - The VPC ID.
- Vswitch
Id string - The vSwitch ID.
- Zone
Id string - The Zone ID.
- Account
Password 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.
- Create
Time string - The creation time of the resource
- Disk
Performance stringLevel - cloud disk performance level
- Project
Name 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 (_).
- Project
Spec string - The performance level of the Supabase instance.
- Region
Id string - The region ID.
- Security
Ip []stringLists - The IP address whitelist.
- Status string
- The status of the Supabase instance.
- Storage
Size int - The storage capacity of the instance. Unit: GB.
- Vpc
Id string - The VPC ID.
- Vswitch
Id string - The vSwitch ID.
- Zone
Id string - The Zone ID.
- account
Password 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.
- create
Time String - The creation time of the resource
- disk
Performance StringLevel - cloud disk performance level
- project
Name 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 (_).
- project
Spec String - The performance level of the Supabase instance.
- region
Id String - The region ID.
- security
Ip List<String>Lists - The IP address whitelist.
- status String
- The status of the Supabase instance.
- storage
Size Integer - The storage capacity of the instance. Unit: GB.
- vpc
Id String - The VPC ID.
- vswitch
Id String - The vSwitch ID.
- zone
Id String - The Zone ID.
- account
Password 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.
- create
Time string - The creation time of the resource
- disk
Performance stringLevel - cloud disk performance level
- project
Name 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 (_).
- project
Spec string - The performance level of the Supabase instance.
- region
Id string - The region ID.
- security
Ip string[]Lists - The IP address whitelist.
- status string
- The status of the Supabase instance.
- storage
Size number - The storage capacity of the instance. Unit: GB.
- vpc
Id string - The VPC ID.
- vswitch
Id string - The vSwitch ID.
- zone
Id 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_ strlevel - 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_ Sequence[str]lists - 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.
- account
Password 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.
- create
Time String - The creation time of the resource
- disk
Performance StringLevel - cloud disk performance level
- project
Name 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 (_).
- project
Spec String - The performance level of the Supabase instance.
- region
Id String - The region ID.
- security
Ip List<String>Lists - The IP address whitelist.
- status String
- The status of the Supabase instance.
- storage
Size Number - The storage capacity of the instance. Unit: GB.
- vpc
Id String - The VPC ID.
- vswitch
Id String - The vSwitch ID.
- zone
Id 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
alicloudTerraform Provider.
