Skip to content

Commit 98d95c7

Browse files
Carus11saschjmil
andauthored
chore(deps): update default vm generations off v3 (#417)
* chore(deps): update default vm generations off v3 Signed-off-by: Carus Kyle <[email protected]> * docs: update examples default vm generations from _v3 to _v5 Signed-off-by: Carus Kyle <[email protected]> * fix: flex server v5 to v3 Reverting the flex server from v5 to v3 to make it more generally available. Signed-off-by: chjmil <[email protected]> --------- Signed-off-by: Carus Kyle <[email protected]> Signed-off-by: chjmil <[email protected]> Co-authored-by: chjmil <[email protected]>
1 parent 00d33fd commit 98d95c7

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

docs/CONFIG-VARS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ Each server element, like `foo = {}`, can contain none, some, or all of the para
368368

369369
| Name | Description | Type | Default | Notes |
370370
| :--- | ---: | ---: | ---: | ---: |
371-
| sku_name| The SKU Name for the PostgreSQL Flexible Server | string | "GP_Standard_D4ds_v5" | The name pattern is the SKU, followed by the tier + family + cores (e.g. B_Standard_B1ms, GP_Standard_D2s_v3, MO_Standard_E4s_v3).|
371+
| sku_name| The SKU Name for the PostgreSQL Flexible Server | string | "GP_Standard_D4ds_v5" | The name pattern is the SKU, followed by the tier + family + cores (e.g. B_Standard_B1ms, GP_Standard_D2s_v5, MO_Standard_E4s_v5).|
372372
| storage_mb | The max storage allowed for the PostgreSQL Flexible Server | number | 131072 | Possible values are 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, and 33554432. |
373373
| backup_retention_days | Backup retention days for the PostgreSQL Flexible server | number | 7 | Supported values are between 7 and 35 days. |
374374
| geo_redundant_backup_enabled | Enable Geo-redundant or not for server backup | bool | false | Not supported for the basic tier. |

examples/sample-input-connect.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ node_pools = {
6464
}
6565
},
6666
connect = {
67-
"machine_type" = "Standard_E16s_v3"
67+
"machine_type" = "Standard_E16s_v5"
6868
"os_disk_size" = 200
6969
"min_nodes" = 1
7070
"max_nodes" = 1

examples/sample-input-minimal.tfvars

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,13 @@ container_registry_admin_enabled = false
3434
# AKS config
3535
kubernetes_version = "1.30"
3636
default_nodepool_min_nodes = 2
37-
default_nodepool_vm_type = "Standard_D4_v3"
38-
#v3 still has local temp storage
37+
default_nodepool_vm_type = "Standard_D4_v5"
3938

4039
# AKS Node Pools config - minimal
4140
cluster_node_pool_mode = "minimal"
4241
node_pools = {
4342
cas = {
44-
"machine_type" = "Standard_E4s_v3"
43+
"machine_type" = "Standard_E4s_v5"
4544
"os_disk_size" = 200
4645
"min_nodes" = 0
4746
"max_nodes" = 5
@@ -52,7 +51,7 @@ node_pools = {
5251
}
5352
},
5453
generic = {
55-
"machine_type" = "Standard_D8s_v3"
54+
"machine_type" = "Standard_D8s_v5"
5655
"os_disk_size" = 200
5756
"min_nodes" = 0
5857
"max_nodes" = 5

modules/azurerm_postgresql_flex/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ variable "server_name" {
1717
}
1818

1919
variable "sku_name" {
20-
description = "The SKU Name for the PostgreSQL Flexible Server. The name of the SKU, follows the tier + name pattern (e.g. B_Standard_B1ms, GP_Standard_D2s_v3, MO_Standard_E4s_v3)."
20+
description = "The SKU Name for the PostgreSQL Flexible Server. The name of the SKU, follows the tier + name pattern (e.g. B_Standard_B1ms, GP_Standard_D2s_v5, MO_Standard_E4s_v5)."
2121
type = string
22-
default = "GP_Standard_D4s_v3"
22+
default = "GP_Standard_D4s_v5"
2323
}
2424

2525
variable "storage_mb" {

modules/azurerm_vm/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ variable "vnet_subnet_id" {
2929
variable "machine_type" {
3030
description = "The size which should be used for this Virtual Machine, such as Standard_F2."
3131
type = string
32-
default = "Standard_E8s_v3"
32+
default = "Standard_E8s_v5"
3333
}
3434

3535
variable "vm_admin" {

0 commit comments

Comments
 (0)