FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_redshift_cluster

Provides a Redshift Cluster Resource.

Example Usage

resource "aws_redshift_cluster" "default" {
  cluster_identifier = "tf-redshift-cluster"
  database_name = "mydb"
  master_username = "foo"
  master_password = "Mustbe8characters"
  node_type = "dc1.large"
  cluster_type = "single-node"
}

Argument Reference

For more detailed documentation about each argument, refer to the AWS official documentation.

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Redshift Clusters can be imported using the cluster_identifier, e.g.

$ terraform import aws_redshift_cluster.myprodcluster tf-redshift-cluster-12345

See the source of this document at Terraform.io