Skip to content

Commit

Permalink
Merge pull request #1435 from DFE-Digital/1812-onboard-services-to-lo…
Browse files Browse the repository at this point in the history
…gitio

Onboard test envs to logit
  • Loading branch information
RMcVelia authored Jun 12, 2024
2 parents cee43cc + 4a73c00 commit b8c4f62
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions terraform/aks/application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module "api_application" {
replicas = var.replicas
web_external_hostnames = var.gov_uk_host_names
web_port = 8080
enable_logit = var.enable_logit
}

module "application_configuration" {
Expand Down
3 changes: 2 additions & 1 deletion terraform/aks/config/development_aks.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"infra_key_vault_name": "s189t01-gitapi-dv-inf-kv",
"cluster": "test",
"namespace": "git-development",
"enable_monitoring": false
"enable_monitoring": false,
"enable_logit": true
}
3 changes: 2 additions & 1 deletion terraform/aks/config/test_aks.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"infra_key_vault_name": "s189t01-gitapi-ts-inf-kv",
"cluster": "test",
"namespace": "git-test",
"enable_monitoring": false
"enable_monitoring": false,
"enable_logit": true
}
4 changes: 4 additions & 0 deletions terraform/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ variable "redis_sku_name" {
type = string
default = "Standard"
}
variable "enable_logit" {
type = bool
default = false
}

locals {
azure_credentials = try(jsondecode(var.azure_credentials), null)
Expand Down

0 comments on commit b8c4f62

Please sign in to comment.