diff --git a/deployment/terraform-module-knfsd/autoscaler.tf b/deployment/terraform-module-knfsd/autoscaler.tf index 4dc9d20..b64a0f0 100644 --- a/deployment/terraform-module-knfsd/autoscaler.tf +++ b/deployment/terraform-module-knfsd/autoscaler.tf @@ -16,6 +16,7 @@ # Autoscaler that scales up the Knfsd cluster depending on the number of NFS Connections resource "google_compute_autoscaler" "knfsd-autoscaler" { + project = var.PROJECT // Count is used here to determine if the autoscaler policy should be created // If var.ENABLE_KNFSD_AUTOSCALING is true then we want 1 autoscaler rule, else 0 @@ -38,4 +39,4 @@ resource "google_compute_autoscaler" "knfsd-autoscaler" { } } -} \ No newline at end of file +}