From 2a8ff61562f53a3338854a4707ae1bf3954a65d5 Mon Sep 17 00:00:00 2001 From: Aram Karapetyan Date: Mon, 11 Dec 2023 13:46:35 +0400 Subject: [PATCH] fix(DMVP-autoscaling): Add patch --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b583cfc..dd8ec80 100644 --- a/README.md +++ b/README.md @@ -242,7 +242,7 @@ worker_groups = { | [alb\_log\_bucket\_path](#input\_alb\_log\_bucket\_path) | ALB-INGRESS-CONTROLLER | `string` | `""` | no | | [api\_gateway\_resources](#input\_api\_gateway\_resources) | Nested map containing API, Stage, and VPC Link resources |
list(object({
namespace = string
api = object({
name = string
protocolType = string
})
stages = optional(list(object({
name = string
namespace = string
apiRef_name = string
stageName = string
autoDeploy = bool
description = string
})))
vpc_links = optional(list(object({
name = string
namespace = string
})))
}))
| `[]` | no | | [api\_gw\_deploy\_region](#input\_api\_gw\_deploy\_region) | Region in which API gatewat will be configured | `string` | `""` | no | -| [autoscaler\_image\_patch](#input\_autoscaler\_image\_patch) | The patch number of autoscaler image | `number` | `0` | no | +| [autoscaler\_image\_patch](#input\_autoscaler\_image\_patch) | The patch number of autoscaler image | `number` | `1` | no | | [autoscaler\_limits](#input\_autoscaler\_limits) | n/a |
object({
cpu = string
memory = string
})
|
{
"cpu": "100m",
"memory": "600Mi"
}
| no | | [autoscaler\_requests](#input\_autoscaler\_requests) | n/a |
object({
cpu = string
memory = string
})
|
{
"cpu": "100m",
"memory": "600Mi"
}
| no | | [autoscaling](#input\_autoscaling) | Weather enable autoscaling or not in EKS | `bool` | `true` | no | diff --git a/variables.tf b/variables.tf index 0fffe19..f17d78a 100644 --- a/variables.tf +++ b/variables.tf @@ -360,7 +360,7 @@ variable "autoscaling" { variable "autoscaler_image_patch" { type = number description = "The patch number of autoscaler image" - default = 0 + default = 1 } variable "scale_down_unneeded_time" {