FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_redshift_parameter_group

Provides a Redshift Cluster parameter group resource.

Example Usage

resource "aws_redshift_parameter_group" "bar" {
	name = "parameter-group-test-terraform"
	family = "redshift-1.0"
	parameter {
	  name = "require_ssl"
	  value = "true"
	}
	parameter {
	  name = "query_group"
	  value = "example"
	}
	parameter{
	  name = "enable_user_activity_logging"
	  value = "true"
	}
}

Argument Reference

The following arguments are supported:

Parameter blocks support the following:

You can read more about the parameters that Redshift supports in the documentation

Attributes Reference

The following attributes are exported:

Import

Redshift Parameter Groups can be imported using the name, e.g.

$ terraform import aws_redshift_parameter_group.paramgroup1 parameter-group-test-terraform

See the source of this document at Terraform.io