Skip to content

Commit 985ff9f

Browse files
authored
docs: (IAC-403): Renamed the missed "nfs_raid_disk_zones" to "nfs_raid_disk_zone" (#264)
1 parent bc0f33b commit 985ff9f

9 files changed

+3
-24
lines changed

docs/CONFIG-VARS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ When `storage_type=standard`, a NFS Server VM is created, only when these variab
281281
| nfs_vm_admin | OS Admin User for the NFS server VM | string | "nfsuser" | |
282282
| nfs_vm_machine_type | SKU to use for NFS server VM | string | "Standard_D8s_v4" | To check for valid types for your subscription, run: `az vm list-skus --resource-type virtualMachines --subscription $subscription --location $location -o table`|
283283
| nfs_vm_zone | Zone in which NFS server VM should be created | string | null | |
284-
| nfs_raid_disk_type | Managed disk types | string | "Standard_LRS" | Supported values: Standard_LRS, Premium_LRS, StandardSSD_LRS or UltraSSD_LRS. When using `UltraSSD_LRS`, `nfs_vm_zone` and `nfs_raid_disk_zones` must be specified. See the [Azure documentation](https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd) for limitations on Availability Zones and VM types. |
284+
| nfs_raid_disk_type | Managed disk types | string | "Standard_LRS" | Supported values: Standard_LRS, Premium_LRS, StandardSSD_LRS or UltraSSD_LRS. When using `UltraSSD_LRS`, `nfs_vm_zone` and `nfs_raid_disk_zone` must be specified. See the [Azure documentation](https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd) for limitations on Availability Zones and VM types. |
285285
| nfs_raid_disk_size | Size in Gb for each disk of the RAID5 cluster on the NFS server VM | number | 128 | |
286286
| nfs_raid_disk_zone | The Availability Zone in which the Managed Disk should be located. Changing this property forces a new resource to be created. | string | null | |
287287

examples/sample-input-byo.tfvars

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,3 @@ nfs_vm_admin = "nfsuser"
111111
nfs_vm_machine_type = "Standard_D8s_v4"
112112
nfs_raid_disk_size = 128
113113
nfs_raid_disk_type = "Standard_LRS"
114-
115-
# Azure Monitor
116-
create_aks_azure_monitor = false

examples/sample-input-connect.tfvars

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,3 @@ nfs_vm_admin = "nfsuser"
112112
nfs_vm_machine_type = "Standard_D8s_v4"
113113
nfs_raid_disk_size = 128
114114
nfs_raid_disk_type = "Standard_LRS"
115-
116-
# Azure Monitor
117-
create_aks_azure_monitor = false

examples/sample-input-ha.tfvars

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,3 @@ storage_type = "ha"
9797
# required ONLY when storage_type = ha for Azure NetApp Files service
9898
netapp_service_level = "Premium"
9999
netapp_size_in_tb = 4
100-
101-
# Azure Monitor
102-
create_aks_azure_monitor = false

examples/sample-input-minimal.tfvars

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,3 @@ nfs_vm_admin = "nfsuser"
7878
nfs_vm_machine_type = "Standard_D4s_v4"
7979
nfs_raid_disk_size = 128
8080
nfs_raid_disk_type = "Standard_LRS"
81-
82-
# Azure Monitor
83-
create_aks_azure_monitor = false

examples/sample-input-ppg.tfvars

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,4 @@ nfs_vm_zone = 1
108108

109109
nfs_raid_disk_size = 128
110110
nfs_raid_disk_type = "Standard_LRS"
111-
nfs_raid_disk_zones = ["1"]
112-
113-
# Azure Monitor
114-
create_aks_azure_monitor = false
111+
nfs_raid_disk_zone = "1"

examples/sample-input-singlestore.tfvars

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,6 @@ nfs_vm_machine_type = "Standard_D8s_v4"
113113
nfs_raid_disk_size = 128
114114
nfs_raid_disk_type = "Standard_LRS"
115115

116-
# Azure Monitor
117-
create_aks_azure_monitor = false
118-
119116
# SingleStore configuration
120117
aks_network_plugin = "azure"
121118

examples/sample-input.tfvars

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,3 @@ nfs_vm_admin = "nfsuser"
100100
nfs_vm_machine_type = "Standard_D8s_v4"
101101
nfs_raid_disk_size = 128
102102
nfs_raid_disk_type = "Standard_LRS"
103-
104-
# Azure Monitor
105-
create_aks_azure_monitor = false

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ variable "node_pools" {
432432
variable "create_aks_azure_monitor" {
433433
type = bool
434434
description = "Enable Azure Log Analytics agent on AKS cluster"
435-
default = "false"
435+
default = false
436436
}
437437

438438
variable "enable_log_analytics_workspace" {

0 commit comments

Comments
 (0)