FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_db_option_group

Provides an RDS DB option group resource.

Example Usage

resource "aws_db_option_group" "bar" {
  name = "option-group-test-terraform"
  option_group_description = "Terraform Option Group"
  engine_name = "sqlserver-ee"
  major_engine_version = "11.00"

  option {
    option_name = "Timezone"
    option_settings {
      name = "TIME_ZONE"
      value = "UTC"
    }
  }

  option {
    option_name = "TDE"
  }
}

~> Note: Any modifications to the db_option_group are set to happen immediately as we default to applying immediately.

Argument Reference

The following arguments are supported:

Option blocks support the following:

Option Settings blocks support the following:

Attributes Reference

The following attributes are exported:

Import

DB Option groups can be imported using the name, e.g.

$ terraform import aws_db_option_group.bar mysql-option-group

See the source of this document at Terraform.io