diff --git a/manifests/magento/main.tf b/manifests/magento/main.tf
index cdd18baa330c0b60c7a1943c0b24ab0c0de43fd3..45440e7cb56a0f1d65eba6f4d5c554aa22394c96 100644
--- a/manifests/magento/main.tf
+++ b/manifests/magento/main.tf
@@ -16,6 +16,11 @@ provider "google" {
   region      = var.region
 }
 
+data "google_project" "project" {
+  provider   = google
+  project_id = var.project_id
+}
+
 ### Reserve Static IP
 resource "google_compute_global_address" "static_ip" {
   provider = google