alicloud_polardb_parameter_group

Provides a PolarDB Parameter Group resource.

For information about PolarDB Parameter Group and how to use it, see What is Parameter Group.

Example Usage

Basic Usage

resource "alicloud_polardb_parameter_group" "example" {
  name       = "example_value"
  db_type    = "MySQL"
  db_version = "8.0"
  parameters {
    param_name  = "wait_timeout"
    param_value = "86400"
  }
  description = "example_value"
}

Argument Reference

The following arguments are supported:

Block parameters

The parameters supports the following:

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

PolarDB Parameter Group can be imported using the id, e.g.

$ terraform import alicloud_polardb_parameter_group.example <id>