From eb4338b95d77c5cd8b8805c913fd7e1643cc29bc Mon Sep 17 00:00:00 2001 From: jarpat Date: Tue, 11 Jun 2024 16:06:11 -0400 Subject: [PATCH] update nfs_vm_machine_type --- docs/CONFIG-VARS.md | 2 +- examples/sample-input-byo.tfvars | 2 +- examples/sample-input-connect.tfvars | 2 +- examples/sample-input-minimal.tfvars | 2 +- examples/sample-input-postgres.tfvars | 2 +- examples/sample-input-singlestore.tfvars | 2 +- examples/sample-input.tfvars | 2 +- variables.tf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/CONFIG-VARS.md b/docs/CONFIG-VARS.md index 8b904730..4a497c18 100644 --- a/docs/CONFIG-VARS.md +++ b/docs/CONFIG-VARS.md @@ -320,7 +320,7 @@ When `storage_type=standard`, a NFS Server VM is created, only when these variab | create_nfs_public_ip | Add public ip to the NFS server VM | bool | false | | | enable_nfs_public_static_ip | Enables `Static` allocation method for the public IP address of NFS Server. Setting false will enable `Dynamic` allocation method | bool | true | Only used with `create_nfs_public_ip=true` | | nfs_vm_admin | OS Admin User for the NFS server VM | string | "nfsuser" | | -| nfs_vm_machine_type | SKU to use for NFS server VM | string | "Standard_D4s_v4" | To check for valid types for your subscription, run: `az vm list-skus --resource-type virtualMachines --subscription $subscription --location $location -o table`| +| nfs_vm_machine_type | SKU to use for NFS server VM | string | "Standard_D4s_v5" | To check for valid types for your subscription, run: `az vm list-skus --resource-type virtualMachines --subscription $subscription --location $location -o table`| | nfs_vm_zone | Zone in which NFS server VM should be created | string | null | | | 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. | | nfs_raid_disk_size | Size in Gb for each disk of the RAID5 cluster on the NFS server VM | number | 256 | | diff --git a/examples/sample-input-byo.tfvars b/examples/sample-input-byo.tfvars index 041a44d4..05b23e82 100644 --- a/examples/sample-input-byo.tfvars +++ b/examples/sample-input-byo.tfvars @@ -108,6 +108,6 @@ storage_type = "standard" # required ONLY when storage_type is "standard" to create NFS Server VM create_nfs_public_ip = false nfs_vm_admin = "nfsuser" -nfs_vm_machine_type = "Standard_D4s_v4" +nfs_vm_machine_type = "Standard_D4s_v5" nfs_raid_disk_size = 256 nfs_raid_disk_type = "Standard_LRS" diff --git a/examples/sample-input-connect.tfvars b/examples/sample-input-connect.tfvars index 6b18a121..9405903b 100644 --- a/examples/sample-input-connect.tfvars +++ b/examples/sample-input-connect.tfvars @@ -109,6 +109,6 @@ storage_type = "standard" # required ONLY when storage_type is "standard" to create NFS Server VM create_nfs_public_ip = false nfs_vm_admin = "nfsuser" -nfs_vm_machine_type = "Standard_D4s_v4" +nfs_vm_machine_type = "Standard_D4s_v5" nfs_raid_disk_size = 256 nfs_raid_disk_type = "Standard_LRS" diff --git a/examples/sample-input-minimal.tfvars b/examples/sample-input-minimal.tfvars index 2e76e7da..e372b70c 100644 --- a/examples/sample-input-minimal.tfvars +++ b/examples/sample-input-minimal.tfvars @@ -75,6 +75,6 @@ storage_type = "standard" # required ONLY when storage_type is "standard" to create NFS Server VM create_nfs_public_ip = false nfs_vm_admin = "nfsuser" -nfs_vm_machine_type = "Standard_D4s_v4" +nfs_vm_machine_type = "Standard_D4s_v5" nfs_raid_disk_size = 256 nfs_raid_disk_type = "Standard_LRS" diff --git a/examples/sample-input-postgres.tfvars b/examples/sample-input-postgres.tfvars index a741226f..2390d9b8 100644 --- a/examples/sample-input-postgres.tfvars +++ b/examples/sample-input-postgres.tfvars @@ -149,6 +149,6 @@ storage_type = "standard" # required ONLY when storage_type is "standard" to create NFS Server VM create_nfs_public_ip = false nfs_vm_admin = "nfsuser" -nfs_vm_machine_type = "Standard_D4s_v4" +nfs_vm_machine_type = "Standard_D4s_v5" nfs_raid_disk_size = 256 nfs_raid_disk_type = "Standard_LRS" diff --git a/examples/sample-input-singlestore.tfvars b/examples/sample-input-singlestore.tfvars index 21511c79..b0ebaa98 100644 --- a/examples/sample-input-singlestore.tfvars +++ b/examples/sample-input-singlestore.tfvars @@ -114,7 +114,7 @@ storage_type = "standard" # required ONLY when storage_type is "standard" to create NFS Server VM create_nfs_public_ip = false nfs_vm_admin = "nfsuser" -nfs_vm_machine_type = "Standard_D4s_v4" +nfs_vm_machine_type = "Standard_D4s_v5" nfs_raid_disk_size = 256 nfs_raid_disk_type = "Standard_LRS" diff --git a/examples/sample-input.tfvars b/examples/sample-input.tfvars index 2a9b2022..3561ce7e 100644 --- a/examples/sample-input.tfvars +++ b/examples/sample-input.tfvars @@ -97,6 +97,6 @@ storage_type = "standard" # required ONLY when storage_type is "standard" to create NFS Server VM create_nfs_public_ip = false nfs_vm_admin = "nfsuser" -nfs_vm_machine_type = "Standard_D4s_v4" +nfs_vm_machine_type = "Standard_D4s_v5" nfs_raid_disk_size = 256 nfs_raid_disk_type = "Standard_LRS" diff --git a/variables.tf b/variables.tf index 4313a6fd..784e2da5 100644 --- a/variables.tf +++ b/variables.tf @@ -431,7 +431,7 @@ variable "enable_nfs_public_static_ip" { variable "nfs_vm_machine_type" { description = "SKU which should be used for this Virtual Machine" type = string - default = "Standard_D4s_v4" + default = "Standard_D4s_v5" } variable "nfs_vm_admin" {