Skip to content

Commit

Permalink
chore(deps): update default vm generations off v3
Browse files Browse the repository at this point in the history
Signed-off-by: Carus Kyle <[email protected]>
  • Loading branch information
Carus11 committed Dec 27, 2024
1 parent e81a72e commit 3d83dba
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/CONFIG-VARS.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ Each server element, like `foo = {}`, can contain none, some, or all of the para

| Name | Description | Type | Default | Notes |
| :--- | ---: | ---: | ---: | ---: |
| 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).|
| 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).|
| 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. |
| backup_retention_days | Backup retention days for the PostgreSQL Flexible server | number | 7 | Supported values are between 7 and 35 days. |
| geo_redundant_backup_enabled | Enable Geo-redundant or not for server backup | bool | false | Not supported for the basic tier. |
Expand Down
4 changes: 2 additions & 2 deletions modules/azurerm_postgresql_flex/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ variable "server_name" {
}

variable "sku_name" {
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)."
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)."
type = string
default = "GP_Standard_D4s_v3"
default = "GP_Standard_D4s_v5"
}

variable "storage_mb" {
Expand Down
2 changes: 1 addition & 1 deletion modules/azurerm_vm/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "vnet_subnet_id" {
variable "machine_type" {
description = "The size which should be used for this Virtual Machine, such as Standard_F2."
type = string
default = "Standard_E8s_v3"
default = "Standard_E8s_v5"
}

variable "vm_admin" {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ variable "postgres_server_defaults" {
description = ""
type = any
default = {
sku_name = "GP_Standard_D4s_v3"
sku_name = "GP_Standard_D4s_v5"
storage_mb = 131072
backup_retention_days = 7
geo_redundant_backup_enabled = false
Expand Down

0 comments on commit 3d83dba

Please sign in to comment.