aws::db-option-group

Create a db option group.

Example

aws::db-option-group db-option-group-example
    name: "option-group-example"
    description: "option group example"
    engine: "mysql"
    major-engine-version: "5.6"

    option
        option-name: "MARIADB_AUDIT_PLUGIN"

        option-settings
            name: "SERVER_AUDIT_FILE_ROTATIONS"
            value: "20"
        end

        option-settings
            name: "SERVER_AUDIT_FILE_ROTATE_SIZE"
            value: "1000"
        end
    end

    tags: {
        Name: "db-option-group-example"
    }
end

Attributes

Attribute Description
tags map A list of tags.
name The name of the option group.
description The description of the option group.
engine The name of the engine that this option group should be associated with.
major-engine-version The major version of the engine that this option group should be associated with.
option list subresource

A list of options to apply.

option-name
The name of the option.
option-settings set subresource

The List of option settings to include in the option configuration.

name
The name of the option settings.
value
The value of the option settings.
port
The port of the option.
version
The version of the option.
vpc-security-groups set
A list of VPC security groups used for this option.

Outputs

Attribute Description
arn The ARN of the RDS resource.