FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_redshift_security_group

Creates a new Amazon Redshift security group. You use security groups to control access to non-VPC clusters

Example Usage

resource "aws_redshift_security_group" "default" {
    name = "redshift-sg"

    ingress {
        cidr = "10.0.0.0/24"
    }
}

Argument Reference

The following arguments are supported:

Ingress blocks support the following:

Attributes Reference

The following attributes are exported:

Import

Redshift security groups can be imported using the name, e.g.

$ terraform import aws_redshift_security_group.testgroup1 redshift_test_group

See the source of this document at Terraform.io