Resource: aws_keyspaces_keyspace

Provides a Keyspaces Keyspace.

More information about keyspaces can be found in the Keyspaces User Guide.

Example Usage

resource "aws_keyspaces_keyspace" "example" {
  name = "my_keyspace"
}

Argument Reference

The following arguments are required:

The following arguments are optional:

Attribute Reference

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

Timeouts

Configuration options:

Import

In Terraform v1.5.0 and later, use an import block to import a keyspace using the name. For example:

import {
  to = aws_keyspaces_keyspace.example
  id = "my_keyspace"
}

Using terraform import, import a keyspace using the name. For example:

% terraform import aws_keyspaces_keyspace.example my_keyspace