Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
environment: [development, qa, preproduction]
environment: [development, qa, preproduction, production]

steps:
- name: Deploy app to ${{ matrix.environment }}
Expand Down
126 changes: 126 additions & 0 deletions terraform/application/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions terraform/application/application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module "web_application" {
namespace = var.namespace
environment = var.environment
service_name = var.service_name
replicas = var.replicas

cluster_configuration_map = module.cluster_data.configuration_map
kubernetes_config_map_name = module.application_configuration.kubernetes_config_map_name
Expand Down
1 change: 1 addition & 0 deletions terraform/application/config/production.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"namespace": "schoolstandards-production",
"enable_postgres_backup_storage" : true,
"enable_monitoring": true,
"replicas": 0,
"external_url": "https://check-performance-data.education.gov.uk/healthcheck",
"apex_url": "https://check-performance-data.education.gov.uk",
"statuscake_contact_groups": [282453]
Expand Down
5 changes: 5 additions & 0 deletions terraform/application/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,10 @@ locals {

variable "enable_logit" { default = true }

variable "replicas" {
default = 1
type = number
}



Loading