Skip to content

Commit

Permalink
Terraform lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hypesystem committed May 9, 2024
1 parent 4296b57 commit d74f5f7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions infrastructure/environments/dplplat01/infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ module "environment" {
environment_name = "dplplat01"
# This variable current _has_ to match the pattern
# <environment_name>.dpl.reload.dk
lagoon_domain_base = "dplplat01.dpl.reload.dk"
random_seed = "LahYegheePhohGeew9Fa"
lagoon_domain_base = "dplplat01.dpl.reload.dk"
random_seed = "LahYegheePhohGeew9Fa"
node_pools = {
"appdefault": { min: 0, max: 10, vm: "Standard_B4ms" },
"admin": { min: 0, max: 2, vm: "Standard_B4ms", role: "admin" },
"app2": { min: 0, max: 20, vm: "Standard_B8ms", max_pods: 100 },
"admin2": { min: 1, max: 1, vm: "Standard_B8ms", role: "admin", max_pods: 100 }
"appdefault" : { min : 0, max : 10, vm : "Standard_B4ms" },
"admin" : { min : 0, max : 2, vm : "Standard_B4ms", role : "admin" },
"app2" : { min : 0, max : 20, vm : "Standard_B8ms", max_pods : 100 },
"admin2" : { min : 1, max : 1, vm : "Standard_B8ms", role : "admin", max_pods : 100 }
}
node_pool_system_count = 2
node_pool_system_count = 2
# We've increased this quite a bit to test performance. The ideal starting-
# point seems to be in the range 102400 - 204800 to get enough IOPS to
# maintain performance during a Drupal site-install.
# When copying this value, consider leaving it out and falling back to the
# default of 102400.
sql_storage_mb = 409600
control_plane_version = "1.27.9"
sql_storage_mb = 409600
control_plane_version = "1.27.9"
}

# Outputs, for values that comes straight from the dpl-platform-environment
Expand Down

0 comments on commit d74f5f7

Please sign in to comment.