Skip to content

Commit

Permalink
Fix variable assignment for repository_disk_size and database_disk_si…
Browse files Browse the repository at this point in the history
…ze for server_containerized (#1745)
  • Loading branch information
maximenoel8 authored Nov 13, 2024
1 parent 1040f4d commit 267ac7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/cucumber_testsuite/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ module "server_containerized" {
provider_settings = lookup(local.provider_settings_by_host, "server_containerized", {})
server_mounted_mirror = lookup(local.server_mounted_mirror, "server_containerized", {})
main_disk_size = lookup(local.main_disk_size, "server_containerized", 200)
repository_disk_size = lookup(local.repository_disk_size, "server", 0)
database_disk_size = lookup(local.database_disk_size, "server", 0)
repository_disk_size = lookup(local.repository_disk_size, "server_containerized", 0)
database_disk_size = lookup(local.database_disk_size, "server_containerized", 0)
large_deployment = lookup(local.large_deployment, "server_containerized", false)
}

Expand Down

0 comments on commit 267ac7b

Please sign in to comment.