Resource: aws_finspace_kx_scaling_group

Terraform resource for managing an AWS FinSpace Kx Scaling Group.

Example Usage

Basic Usage

resource "aws_finspace_kx_scaling_group" "example" {
  name                 = "my-tf-kx-scalinggroup"
  environment_id       = aws_finspace_kx_environment.example.id
  availability_zone_id = "use1-az2"
  host_type            = "kx.sg.4xlarge"
}

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

import {
  to = aws_finspace_kx_scaling_group.example
  id = "n3ceo7wqxoxcti5tujqwzs,my-tf-kx-scalinggroup"
}

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

% terraform import aws_finspace_kx_scaling_group.example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-scalinggroup