Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cme 121 frequency #2399

Open
wants to merge 9 commits into
base: ithc
Choose a base branch
from
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ext['snakeyaml.version'] = '2.0'

def versions = [
junit : '5.9.0',
lombok : '1.18.34',
lombok : '1.18.36',
gradlePitest : '1.3.0',
pitest : '1.17.0',
reformLogging : '6.1.7',
Expand Down Expand Up @@ -458,7 +458,7 @@ dependencies {
implementation group: 'org.hibernate', name: 'hibernate-core', version: '5.6.15.Final'
implementation group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '3.1.8'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.7.4'
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '9.41.2'
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: '9.47'
implementation group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
implementation group: 'commons-io', name:'commons-io', version: '2.16.1'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.27.1'
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.116.0"
version = "~> 3.117.0"
}
azuread = {
source = "hashicorp/azuread"
Expand Down
6 changes: 3 additions & 3 deletions infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,19 @@ variable "action_group_name" {
}

variable "cpu_threshold" {
default = 7
default = 5
type = number
description = "Average CPU utilisation threshold"
}

variable "memory_threshold" {
default = 9
default = 7
type = number
description = "Average memory utilisation threshold"
}

variable "storage_threshold" {
default = 1
default = 2
type = number
description = "Average storage utilisation threshold"
}
Expand Down