Resource: aws_redshift_usage_limit

Creates a new Amazon Redshift Usage Limit.

Example Usage

resource "aws_redshift_usage_limit" "example" {
  cluster_identifier = aws_redshift_cluster.example.id
  feature_type       = "concurrency-scaling"
  limit_type         = "time"
  amount             = 60
}

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_usage_limit.example
  id = "example-id"
}

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

% terraform import aws_redshift_usage_limit.example example-id