Resource: aws_redshift_partner

Creates a new Amazon Redshift Partner Integration.

Example Usage

resource "aws_redshift_partner" "example" {
  cluster_identifier = aws_redshift_cluster.example.id
  account_id         = 01234567910
  database_name      = aws_redshift_cluster.example.database_name
  partner_name       = "example"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Redshift usage limits using the id. For example:

import {
  to = aws_redshift_partner.example
  id = "01234567910:cluster-example-id:example:example"
}

Using terraform import, import Redshift usage limits using the id. For example:

% terraform import aws_redshift_partner.example 01234567910:cluster-example-id:example:example