Files
opentf/website/source/docs/providers/aws/r/redshift_security_group.html.markdown
stack72 bf03752552 Adding the documentation for the AWS Redshift Subnet Group resource
also removed the notion of tags from the redshift security group and
parameter group documentation until that has been implemented

Redshift Cluster CRUD and acceptance tests

Removing the Acceptance test for the Cluster Updates. You cannot delete
a cluster immediately after performing an operation on it. We would need
to add a lot of retry logic to the system to get this test to work

Adding some schema validation for RedShift cluster

Adding the last of the pieces of a first draft of the Redshift work - this is the documentation
2015-12-20 20:20:05 +00:00

1.1 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
aws AWS: aws_redshift_security_group docs-aws-resource-redshift-security-group Provides a Redshift security group resource.

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"
    description = "Redshift Example security group"

    ingress {
        cidr = "10.0.0.0/24"
    }
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name of the Redshift security group.
  • description - (Required) The description of the Redshift security group.
  • ingress - (Optional) A list of ingress rules.

Ingress blocks support the following:

  • cidr - The CIDR block to accept
  • security_group_name - The name of the security group to authorize
  • security_group_owner_id - The owner Id of the security group provided by security_group_name.

Attributes Reference

The following attributes are exported:

  • id - The Redshift security group ID.