Creates an FSx ONTAP volume with a tiering policy specifying the name and cooling period.

Terraform Template

resource "aws_fsx_ontap_volume" "test" {
  junction_path = "/test"
  name = "test"
  size_in_megabytes = 1024
  storage_efficiency_enabled = true
  storage_virtual_machine_id = "aws_fsx_ontap_storage_virtual_machine.test.id"

  tiering_policy {
    cooling_period = 31
    name = "AUTO"
  }
}