Skip to content

Commit

Permalink
Merge pull request #88 from NetApp/kerensMac
Browse files Browse the repository at this point in the history
deleted folders
  • Loading branch information
kerentraht authored Mar 18, 2024
2 parents 69037a5 + ef035a2 commit 142af49
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Terraform/deploy-fsx-ontap/standalone-module/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ variable "fsx_subnets" {

variable "fsx_capacity_size_gb" {
description = "The storage capacity (GiB) of the FSxN file system. Valid values between 1024 and 196608"
type = number
default = 1024
type = number
default = 1024
}

variable "fsx_deploy_type" {
description = "The filesystem deployment type. Supports MULTI_AZ_1 and SINGLE_AZ_1"
type = string
default = "MULTI_AZ_1"
type = string
default = "MULTI_AZ_1"
}

variable "fsx_tput_in_MBps" {
description = "The throughput capacity (in MBps) for the file system. Valid values are 128, 256, 512, 1024, 2048, and 4096."
type = number
default = 256
type = number
default = 256
}

variable "fsx_admin_password" {
Expand All @@ -45,19 +45,19 @@ variable "fsx_admin_password" {

variable "svm_name" {
description = "The name of the Storage Virtual Machine"
type = string
default = "first_svm"
type = string
default = "first_svm"
}

variable "vol_info" {
description = "Details for the volume creation"
type = map
type = map(any)
default = {
"vol_name" = "vol1"
"junction_path" = "/vol1"
"size_mg" = 1024
"efficiency" = true
"vol_name" = "vol1"
"junction_path" = "/vol1"
"size_mg" = 1024
"efficiency" = true
"tier_policy_name" = "AUTO"
"cooling_period" = 31
"cooling_period" = 31
}
}

0 comments on commit 142af49

Please sign in to comment.