diff --git a/aks/postgres/tfdocs.md b/aks/postgres/tfdocs.md index c3ca936..0f6cde7 100644 --- a/aks/postgres/tfdocs.md +++ b/aks/postgres/tfdocs.md @@ -48,18 +48,18 @@ No modules. | [admin\_password](#input\_admin\_password) | Password of the admin user | `string` | `null` | no | | [admin\_username](#input\_admin\_username) | Username of the admin user | `string` | `null` | no | | [alert\_window\_size](#input\_alert\_window\_size) | The period of time that is used to monitor alert activity e.g PT1M, PT5M, PT15M, PT30M, PT1H, PT6H or PT12H | `string` | `"PT5M"` | no | -| [azure\_cpu\_threshold](#input\_azure\_cpu\_threshold) | n/a | `number` | `60` | no | +| [azure\_cpu\_threshold](#input\_azure\_cpu\_threshold) | n/a | `number` | `80` | no | | [azure\_enable\_backup\_storage](#input\_azure\_enable\_backup\_storage) | n/a | `bool` | `true` | no | | [azure\_enable\_high\_availability](#input\_azure\_enable\_high\_availability) | n/a | `bool` | `false` | no | | [azure\_enable\_monitoring](#input\_azure\_enable\_monitoring) | n/a | `bool` | `true` | no | | [azure\_extensions](#input\_azure\_extensions) | n/a | `list(string)` | `[]` | no | | [azure\_maintenance\_window](#input\_azure\_maintenance\_window) | n/a |
object({
day_of_week = optional(number)
start_hour = optional(number)
start_minute = optional(number)
})
| `null` | no | -| [azure\_memory\_threshold](#input\_azure\_memory\_threshold) | n/a | `number` | `75` | no | +| [azure\_memory\_threshold](#input\_azure\_memory\_threshold) | n/a | `number` | `80` | no | | [azure\_name\_override](#input\_azure\_name\_override) | Replace the generated name with hardcoded name | `string` | `null` | no | | [azure\_resource\_prefix](#input\_azure\_resource\_prefix) | Prefix of Azure resources for the service | `string` | n/a | yes | | [azure\_sku\_name](#input\_azure\_sku\_name) | n/a | `string` | `"B_Standard_B1ms"` | no | | [azure\_storage\_mb](#input\_azure\_storage\_mb) | n/a | `number` | `32768` | no | -| [azure\_storage\_threshold](#input\_azure\_storage\_threshold) | n/a | `number` | `75` | no | +| [azure\_storage\_threshold](#input\_azure\_storage\_threshold) | n/a | `number` | `80` | no | | [cluster\_configuration\_map](#input\_cluster\_configuration\_map) | Configuration map for the cluster |
object({
resource_group_name = string,
resource_prefix = string,
dns_zone_prefix = optional(string),
cpu_min = number
})
| n/a | yes | | [config\_short](#input\_config\_short) | Short name of the configuration | `string` | n/a | yes | | [environment](#input\_environment) | Current application environment | `string` | n/a | yes | diff --git a/aks/postgres/variables.tf b/aks/postgres/variables.tf index 14c1105..98beb73 100644 --- a/aks/postgres/variables.tf +++ b/aks/postgres/variables.tf @@ -105,17 +105,17 @@ variable "azure_extensions" { variable "azure_memory_threshold" { type = number - default = 75 + default = 80 } variable "azure_cpu_threshold" { type = number - default = 60 + default = 80 } variable "azure_storage_threshold" { type = number - default = 75 + default = 80 } variable "azure_enable_monitoring" { diff --git a/aks/redis/tfdocs.md b/aks/redis/tfdocs.md index 0126cd0..1e3958d 100644 --- a/aks/redis/tfdocs.md +++ b/aks/redis/tfdocs.md @@ -37,7 +37,7 @@ No modules. | [azure\_enable\_monitoring](#input\_azure\_enable\_monitoring) | n/a | `bool` | `true` | no | | [azure\_family](#input\_azure\_family) | n/a | `string` | `"C"` | no | | [azure\_maxmemory\_policy](#input\_azure\_maxmemory\_policy) | n/a | `string` | `"allkeys-lru"` | no | -| [azure\_memory\_threshold](#input\_azure\_memory\_threshold) | n/a | `number` | `60` | no | +| [azure\_memory\_threshold](#input\_azure\_memory\_threshold) | n/a | `number` | `80` | no | | [azure\_minimum\_tls\_version](#input\_azure\_minimum\_tls\_version) | n/a | `string` | `"1.2"` | no | | [azure\_patch\_schedule](#input\_azure\_patch\_schedule) | n/a |
list(object({
day_of_week = string,
start_hour_utc = optional(number),
maintenance_window = optional(string)
}))
| `[]` | no | | [azure\_public\_network\_access\_enabled](#input\_azure\_public\_network\_access\_enabled) | n/a | `bool` | `false` | no | diff --git a/aks/redis/variables.tf b/aks/redis/variables.tf index 278b6f9..ed77404 100644 --- a/aks/redis/variables.tf +++ b/aks/redis/variables.tf @@ -85,7 +85,7 @@ variable "azure_public_network_access_enabled" { variable "azure_memory_threshold" { type = number - default = 60 + default = 80 } variable "azure_maxmemory_policy" { @@ -116,4 +116,3 @@ variable "alert_window_size" { nullable = false description = "The period of time that is used to monitor alert activity e.g PT1M, PT5M, PT15M, PT30M, PT1H, PT6H or PT12H" } -