Skip to content

Commit

Permalink
Service Onboard to Logit.io
Browse files Browse the repository at this point in the history
  • Loading branch information
VenkataChalla554 committed May 28, 2024
1 parent 8b13c13 commit ab8b335
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions terraform/aks/application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module "web_application" {
probe_path = var.probe_path

web_external_hostnames = var.gov_uk_host_names
enable_logit = var.enable_logit
}

module "worker_application" {
Expand Down
3 changes: 2 additions & 1 deletion terraform/aks/config/preproduction.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
"gov_uk_host_names": [
"preproduction.check-the-childrens-barred-list.education.gov.uk"
],
"azure_enable_backup_storage": false
"azure_enable_backup_storage": false,
"enable_logit": true
}
3 changes: 2 additions & 1 deletion terraform/aks/config/review.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"bundle exec rails db:migrate && bundle exec rails server -b 0.0.0.0"
],
"replicas": 1,
"memory_max": "1Gi"
"memory_max": "1Gi",
"enable_logit": true
}
3 changes: 2 additions & 1 deletion terraform/aks/config/test.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
"gov_uk_host_names": [
"test.check-the-childrens-barred-list.education.gov.uk"
],
"azure_enable_backup_storage": false
"azure_enable_backup_storage": false,
"enable_logit": true
}
2 changes: 2 additions & 0 deletions terraform/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ variable "statuscake_contact_groups" {
default = []
}

variable "enable_logit" { default = false }

locals {
service_name = "check-childrens-barred-list"
version = "1.9.7"
Expand Down

0 comments on commit ab8b335

Please sign in to comment.