Provides a resource to manage rds postgresql parameter template
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const tplBase = new volcengine.rds_postgresql.ParameterTemplate("tplBase", {
templateDesc: "base template for clone",
templateName: "tf-pg-pt-base",
templateParams: [
{
name: "auto_explain.log_analyze",
value: "off",
},
{
name: "auto_explain.log_buffers",
value: "on",
},
],
templateType: "PostgreSQL",
templateTypeVersion: "PostgreSQL_12",
});
const tplClone = new volcengine.rds_postgresql.ParameterTemplate("tplClone", {
srcTemplateId: "postgresql-b62f5687df914b1c",
templateDesc: "cloned by terraform",
templateName: "tf-pg-pt-clone",
templateType: "PostgreSQL",
templateTypeVersion: "PostgreSQL_12",
});
const tplExport = new volcengine.rds_postgresql.ParameterTemplate("tplExport", {
instanceId: "postgres-72715e0d9f58",
templateDesc: "exported from instance",
templateName: "tf-pg-pt-export",
templateType: "PostgreSQL",
templateTypeVersion: "PostgreSQL_12",
});
import pulumi
import pulumi_volcengine as volcengine
tpl_base = volcengine.rds_postgresql.ParameterTemplate("tplBase",
template_desc="base template for clone",
template_name="tf-pg-pt-base",
template_params=[
volcengine.rds_postgresql.ParameterTemplateTemplateParamArgs(
name="auto_explain.log_analyze",
value="off",
),
volcengine.rds_postgresql.ParameterTemplateTemplateParamArgs(
name="auto_explain.log_buffers",
value="on",
),
],
template_type="PostgreSQL",
template_type_version="PostgreSQL_12")
tpl_clone = volcengine.rds_postgresql.ParameterTemplate("tplClone",
src_template_id="postgresql-b62f5687df914b1c",
template_desc="cloned by terraform",
template_name="tf-pg-pt-clone",
template_type="PostgreSQL",
template_type_version="PostgreSQL_12")
tpl_export = volcengine.rds_postgresql.ParameterTemplate("tplExport",
instance_id="postgres-72715e0d9f58",
template_desc="exported from instance",
template_name="tf-pg-pt-export",
template_type="PostgreSQL",
template_type_version="PostgreSQL_12")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_postgresql"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rds_postgresql.NewParameterTemplate(ctx, "tplBase", &rds_postgresql.ParameterTemplateArgs{
TemplateDesc: pulumi.String("base template for clone"),
TemplateName: pulumi.String("tf-pg-pt-base"),
TemplateParams: rds_postgresql.ParameterTemplateTemplateParamArray{
&rds_postgresql.ParameterTemplateTemplateParamArgs{
Name: pulumi.String("auto_explain.log_analyze"),
Value: pulumi.String("off"),
},
&rds_postgresql.ParameterTemplateTemplateParamArgs{
Name: pulumi.String("auto_explain.log_buffers"),
Value: pulumi.String("on"),
},
},
TemplateType: pulumi.String("PostgreSQL"),
TemplateTypeVersion: pulumi.String("PostgreSQL_12"),
})
if err != nil {
return err
}
_, err = rds_postgresql.NewParameterTemplate(ctx, "tplClone", &rds_postgresql.ParameterTemplateArgs{
SrcTemplateId: pulumi.String("postgresql-b62f5687df914b1c"),
TemplateDesc: pulumi.String("cloned by terraform"),
TemplateName: pulumi.String("tf-pg-pt-clone"),
TemplateType: pulumi.String("PostgreSQL"),
TemplateTypeVersion: pulumi.String("PostgreSQL_12"),
})
if err != nil {
return err
}
_, err = rds_postgresql.NewParameterTemplate(ctx, "tplExport", &rds_postgresql.ParameterTemplateArgs{
InstanceId: pulumi.String("postgres-72715e0d9f58"),
TemplateDesc: pulumi.String("exported from instance"),
TemplateName: pulumi.String("tf-pg-pt-export"),
TemplateType: pulumi.String("PostgreSQL"),
TemplateTypeVersion: pulumi.String("PostgreSQL_12"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var tplBase = new Volcengine.Rds_postgresql.ParameterTemplate("tplBase", new()
{
TemplateDesc = "base template for clone",
TemplateName = "tf-pg-pt-base",
TemplateParams = new[]
{
new Volcengine.Rds_postgresql.Inputs.ParameterTemplateTemplateParamArgs
{
Name = "auto_explain.log_analyze",
Value = "off",
},
new Volcengine.Rds_postgresql.Inputs.ParameterTemplateTemplateParamArgs
{
Name = "auto_explain.log_buffers",
Value = "on",
},
},
TemplateType = "PostgreSQL",
TemplateTypeVersion = "PostgreSQL_12",
});
var tplClone = new Volcengine.Rds_postgresql.ParameterTemplate("tplClone", new()
{
SrcTemplateId = "postgresql-b62f5687df914b1c",
TemplateDesc = "cloned by terraform",
TemplateName = "tf-pg-pt-clone",
TemplateType = "PostgreSQL",
TemplateTypeVersion = "PostgreSQL_12",
});
var tplExport = new Volcengine.Rds_postgresql.ParameterTemplate("tplExport", new()
{
InstanceId = "postgres-72715e0d9f58",
TemplateDesc = "exported from instance",
TemplateName = "tf-pg-pt-export",
TemplateType = "PostgreSQL",
TemplateTypeVersion = "PostgreSQL_12",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.rds_postgresql.ParameterTemplate;
import com.pulumi.volcengine.rds_postgresql.ParameterTemplateArgs;
import com.pulumi.volcengine.rds_postgresql.inputs.ParameterTemplateTemplateParamArgs;
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 tplBase = new ParameterTemplate("tplBase", ParameterTemplateArgs.builder()
.templateDesc("base template for clone")
.templateName("tf-pg-pt-base")
.templateParams(
ParameterTemplateTemplateParamArgs.builder()
.name("auto_explain.log_analyze")
.value("off")
.build(),
ParameterTemplateTemplateParamArgs.builder()
.name("auto_explain.log_buffers")
.value("on")
.build())
.templateType("PostgreSQL")
.templateTypeVersion("PostgreSQL_12")
.build());
var tplClone = new ParameterTemplate("tplClone", ParameterTemplateArgs.builder()
.srcTemplateId("postgresql-b62f5687df914b1c")
.templateDesc("cloned by terraform")
.templateName("tf-pg-pt-clone")
.templateType("PostgreSQL")
.templateTypeVersion("PostgreSQL_12")
.build());
var tplExport = new ParameterTemplate("tplExport", ParameterTemplateArgs.builder()
.instanceId("postgres-72715e0d9f58")
.templateDesc("exported from instance")
.templateName("tf-pg-pt-export")
.templateType("PostgreSQL")
.templateTypeVersion("PostgreSQL_12")
.build());
}
}
resources:
tplBase:
type: volcengine:rds_postgresql:ParameterTemplate
properties:
templateDesc: base template for clone
templateName: tf-pg-pt-base
templateParams:
- name: auto_explain.log_analyze
value: off
- name: auto_explain.log_buffers
value: on
templateType: PostgreSQL
templateTypeVersion: PostgreSQL_12
tplClone:
type: volcengine:rds_postgresql:ParameterTemplate
properties:
srcTemplateId: postgresql-b62f5687df914b1c
templateDesc: cloned by terraform
templateName: tf-pg-pt-clone
templateType: PostgreSQL
templateTypeVersion: PostgreSQL_12
tplExport:
type: volcengine:rds_postgresql:ParameterTemplate
properties:
instanceId: postgres-72715e0d9f58
templateDesc: exported from instance
templateName: tf-pg-pt-export
templateType: PostgreSQL
templateTypeVersion: PostgreSQL_12
Create ParameterTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ParameterTemplate(name: string, args: ParameterTemplateArgs, opts?: CustomResourceOptions);@overload
def ParameterTemplate(resource_name: str,
args: ParameterTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ParameterTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
template_name: Optional[str] = None,
template_type_version: Optional[str] = None,
instance_id: Optional[str] = None,
src_template_id: Optional[str] = None,
template_desc: Optional[str] = None,
template_params: Optional[Sequence[ParameterTemplateTemplateParamArgs]] = None,
template_type: Optional[str] = None)func NewParameterTemplate(ctx *Context, name string, args ParameterTemplateArgs, opts ...ResourceOption) (*ParameterTemplate, error)public ParameterTemplate(string name, ParameterTemplateArgs args, CustomResourceOptions? opts = null)
public ParameterTemplate(String name, ParameterTemplateArgs args)
public ParameterTemplate(String name, ParameterTemplateArgs args, CustomResourceOptions options)
type: volcengine:rds_postgresql:ParameterTemplate
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 ParameterTemplateArgs
- 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 ParameterTemplateArgs
- 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 ParameterTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ParameterTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ParameterTemplateArgs
- 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 exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate = new Volcengine.Rds_postgresql.ParameterTemplate("exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate", new()
{
TemplateName = "string",
TemplateTypeVersion = "string",
InstanceId = "string",
SrcTemplateId = "string",
TemplateDesc = "string",
TemplateParams = new[]
{
new Volcengine.Rds_postgresql.Inputs.ParameterTemplateTemplateParamArgs
{
Name = "string",
Value = "string",
},
},
TemplateType = "string",
});
example, err := rds_postgresql.NewParameterTemplate(ctx, "exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate", &rds_postgresql.ParameterTemplateArgs{
TemplateName: pulumi.String("string"),
TemplateTypeVersion: pulumi.String("string"),
InstanceId: pulumi.String("string"),
SrcTemplateId: pulumi.String("string"),
TemplateDesc: pulumi.String("string"),
TemplateParams: rds_postgresql.ParameterTemplateTemplateParamArray{
&rds_postgresql.ParameterTemplateTemplateParamArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TemplateType: pulumi.String("string"),
})
var exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate = new com.pulumi.volcengine.rds_postgresql.ParameterTemplate("exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate", com.pulumi.volcengine.rds_postgresql.ParameterTemplateArgs.builder()
.templateName("string")
.templateTypeVersion("string")
.instanceId("string")
.srcTemplateId("string")
.templateDesc("string")
.templateParams(ParameterTemplateTemplateParamArgs.builder()
.name("string")
.value("string")
.build())
.templateType("string")
.build());
exampleparameter_template_resource_resource_from_rds_postgresqlparameter_template = volcengine.rds_postgresql.ParameterTemplate("exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate",
template_name="string",
template_type_version="string",
instance_id="string",
src_template_id="string",
template_desc="string",
template_params=[{
"name": "string",
"value": "string",
}],
template_type="string")
const exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate = new volcengine.rds_postgresql.ParameterTemplate("exampleparameterTemplateResourceResourceFromRds_postgresqlparameterTemplate", {
templateName: "string",
templateTypeVersion: "string",
instanceId: "string",
srcTemplateId: "string",
templateDesc: "string",
templateParams: [{
name: "string",
value: "string",
}],
templateType: "string",
});
type: volcengine:rds_postgresql:ParameterTemplate
properties:
instanceId: string
srcTemplateId: string
templateDesc: string
templateName: string
templateParams:
- name: string
value: string
templateType: string
templateTypeVersion: string
ParameterTemplate 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 ParameterTemplate resource accepts the following input properties:
- Template
Name string - Parameter template name.
- Template
Type stringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- Instance
Id string - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- Src
Template stringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- Template
Desc string - The description of the parameter template. The maximum length is 200 characters.
- Template
Params List<ParameterTemplate Template Param> - Parameter configuration of the parameter template.
- Template
Type string - The type of the parameter template. The current value can only be PostgreSQL.
- Template
Name string - Parameter template name.
- Template
Type stringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- Instance
Id string - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- Src
Template stringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- Template
Desc string - The description of the parameter template. The maximum length is 200 characters.
- Template
Params []ParameterTemplate Template Param Args - Parameter configuration of the parameter template.
- Template
Type string - The type of the parameter template. The current value can only be PostgreSQL.
- template
Name String - Parameter template name.
- template
Type StringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance
Id String - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src
Template StringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template
Desc String - The description of the parameter template. The maximum length is 200 characters.
- template
Params List<ParameterTemplate Template Param> - Parameter configuration of the parameter template.
- template
Type String - The type of the parameter template. The current value can only be PostgreSQL.
- template
Name string - Parameter template name.
- template
Type stringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance
Id string - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src
Template stringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template
Desc string - The description of the parameter template. The maximum length is 200 characters.
- template
Params ParameterTemplate Template Param[] - Parameter configuration of the parameter template.
- template
Type string - The type of the parameter template. The current value can only be PostgreSQL.
- template_
name str - Parameter template name.
- template_
type_ strversion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance_
id str - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src_
template_ strid - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template_
desc str - The description of the parameter template. The maximum length is 200 characters.
- template_
params Sequence[ParameterTemplate Template Param Args] - Parameter configuration of the parameter template.
- template_
type str - The type of the parameter template. The current value can only be PostgreSQL.
- template
Name String - Parameter template name.
- template
Type StringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance
Id String - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src
Template StringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template
Desc String - The description of the parameter template. The maximum length is 200 characters.
- template
Params List<Property Map> - Parameter configuration of the parameter template.
- template
Type String - The type of the parameter template. The current value can only be PostgreSQL.
Outputs
All input properties are implicitly available as output properties. Additionally, the ParameterTemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Template
Id string - Parameter template ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Template
Id string - Parameter template ID.
- id String
- The provider-assigned unique ID for this managed resource.
- template
Id String - Parameter template ID.
- id string
- The provider-assigned unique ID for this managed resource.
- template
Id string - Parameter template ID.
- id str
- The provider-assigned unique ID for this managed resource.
- template_
id str - Parameter template ID.
- id String
- The provider-assigned unique ID for this managed resource.
- template
Id String - Parameter template ID.
Look up Existing ParameterTemplate Resource
Get an existing ParameterTemplate 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?: ParameterTemplateState, opts?: CustomResourceOptions): ParameterTemplate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
src_template_id: Optional[str] = None,
template_desc: Optional[str] = None,
template_id: Optional[str] = None,
template_name: Optional[str] = None,
template_params: Optional[Sequence[ParameterTemplateTemplateParamArgs]] = None,
template_type: Optional[str] = None,
template_type_version: Optional[str] = None) -> ParameterTemplatefunc GetParameterTemplate(ctx *Context, name string, id IDInput, state *ParameterTemplateState, opts ...ResourceOption) (*ParameterTemplate, error)public static ParameterTemplate Get(string name, Input<string> id, ParameterTemplateState? state, CustomResourceOptions? opts = null)public static ParameterTemplate get(String name, Output<String> id, ParameterTemplateState state, CustomResourceOptions options)resources: _: type: volcengine:rds_postgresql:ParameterTemplate 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.
- Instance
Id string - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- Src
Template stringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- Template
Desc string - The description of the parameter template. The maximum length is 200 characters.
- Template
Id string - Parameter template ID.
- Template
Name string - Parameter template name.
- Template
Params List<ParameterTemplate Template Param> - Parameter configuration of the parameter template.
- Template
Type string - The type of the parameter template. The current value can only be PostgreSQL.
- Template
Type stringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- Instance
Id string - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- Src
Template stringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- Template
Desc string - The description of the parameter template. The maximum length is 200 characters.
- Template
Id string - Parameter template ID.
- Template
Name string - Parameter template name.
- Template
Params []ParameterTemplate Template Param Args - Parameter configuration of the parameter template.
- Template
Type string - The type of the parameter template. The current value can only be PostgreSQL.
- Template
Type stringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance
Id String - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src
Template StringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template
Desc String - The description of the parameter template. The maximum length is 200 characters.
- template
Id String - Parameter template ID.
- template
Name String - Parameter template name.
- template
Params List<ParameterTemplate Template Param> - Parameter configuration of the parameter template.
- template
Type String - The type of the parameter template. The current value can only be PostgreSQL.
- template
Type StringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance
Id string - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src
Template stringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template
Desc string - The description of the parameter template. The maximum length is 200 characters.
- template
Id string - Parameter template ID.
- template
Name string - Parameter template name.
- template
Params ParameterTemplate Template Param[] - Parameter configuration of the parameter template.
- template
Type string - The type of the parameter template. The current value can only be PostgreSQL.
- template
Type stringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance_
id str - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src_
template_ strid - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template_
desc str - The description of the parameter template. The maximum length is 200 characters.
- template_
id str - Parameter template ID.
- template_
name str - Parameter template name.
- template_
params Sequence[ParameterTemplate Template Param Args] - Parameter configuration of the parameter template.
- template_
type str - The type of the parameter template. The current value can only be PostgreSQL.
- template_
type_ strversion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
- instance
Id String - The ID of the instance to export the current parameters as a parameter template. If set, the parameter template will be created based on the current parameters of the instance.
- src
Template StringId - The ID of the source parameter template to clone. If set, the parameter template will be cloned from the source template.
- template
Desc String - The description of the parameter template. The maximum length is 200 characters.
- template
Id String - Parameter template ID.
- template
Name String - Parameter template name.
- template
Params List<Property Map> - Parameter configuration of the parameter template.
- template
Type String - The type of the parameter template. The current value can only be PostgreSQL.
- template
Type StringVersion - The version of PostgreSQL supported by the parameter template. The current value can be PostgreSQL_11/12/13/14/15/16/17.
Supporting Types
ParameterTemplateTemplateParam, ParameterTemplateTemplateParamArgs
Import
RdsPostgresqlParameterTemplate can be imported using the id, e.g.
$ pulumi import volcengine:rds_postgresql/parameterTemplate:ParameterTemplate default resource_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengineTerraform Provider.
