Resource: aws_finspace_kx_volume

Terraform resource for managing an AWS FinSpace Kx Volume.

Example Usage

Basic Usage

resource "aws_finspace_kx_volume" "example" {
  name               = "my-tf-kx-volume"
  environment_id     = aws_finspace_kx_environment.example.id
  availability_zones = "use1-az2"
  az_mode            = "SINGLE"
  type               = "NAS_1"
  nas1_configuration {
    size = 1200
    type = "SSD_250"
  }
}

Argument Reference

The following arguments are required:

The following arguments are optional:

nas1_configuration Argument Reference

The nas1_configuration block supports the following arguments:

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 an AWS FinSpace Kx Volume using the id (environment ID and volume name, comma-delimited). For example:

import {
  to = aws_finspace_kx_volume.example
  id = "n3ceo7wqxoxcti5tujqwzs,my-tf-kx-volume"
}

Using terraform import, import an AWS FinSpace Kx Volume using the id (environment ID and volume name, comma-delimited). For example:

% terraform import aws_finspace_kx_volume.example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-volume