diff --git a/terraform/environments/backend.tf b/terraform/environments/backend.tf
index 73e37abaebac712bbf8acd72c59dbee101f646cc..f5e0419b6eece993e543908b29f6af979b9ad8f0 100644
--- a/terraform/environments/backend.tf
+++ b/terraform/environments/backend.tf
@@ -148,6 +148,26 @@ resource "google_cloud_run_service" "moderation_backend" {
             memory = local.environment == "production" ? "512Mi" : "512Mi"
           }
         }
+
+        startup_probe {
+          timeout_seconds   = 5
+          period_seconds    = 5
+          failure_threshold = 6
+
+          http_get {
+            path = "/health"
+          }
+        }
+
+        liveness_probe {
+          timeout_seconds   = 5
+          period_seconds    = 30
+          failure_threshold = 5
+
+          http_get {
+            path = "/health"
+          }
+        }
       }
 
       container_concurrency = 80
diff --git a/terraform/environments/federator.tf b/terraform/environments/federator.tf
index 13e5000f2b1dbafff65fa29701cb132afa2bb638..c3410b7a23e11d284f63295b4994c49e514cefb1 100644
--- a/terraform/environments/federator.tf
+++ b/terraform/environments/federator.tf
@@ -166,6 +166,26 @@ resource "google_cloud_run_service" "moderation_federator" {
             memory = local.environment == "production" ? "1Gi" : "1Gi"
           }
         }
+
+        startup_probe {
+          period_seconds    = 15
+          timeout_seconds   = 10
+          failure_threshold = 6
+
+          http_get {
+            path = "/healthz"
+          }
+        }
+
+        liveness_probe {
+          period_seconds    = 30
+          timeout_seconds   = 5
+          failure_threshold = 2
+
+          http_get {
+            path = "/healthz"
+          }
+        }
       }
 
       container_concurrency = 80
diff --git a/terraform/environments/frontend.tf b/terraform/environments/frontend.tf
index 1a3e6d3604e00cbcf1fab3b44fc81a1c5e1bc613..28f3d9a2d13fe0402c5a2f3918d538acf39a4cb2 100644
--- a/terraform/environments/frontend.tf
+++ b/terraform/environments/frontend.tf
@@ -32,6 +32,26 @@ resource "google_cloud_run_service" "frontend" {
         ports {
           container_port = 80
         }
+
+        startup_probe {
+          http_get {
+            path = "/"
+          }
+
+          period_seconds    = 5
+          timeout_seconds   = 5
+          failure_threshold = 6
+        }
+
+        liveness_probe {
+          http_get {
+            path = "/"
+          }
+
+          period_seconds    = 30
+          timeout_seconds   = 30
+          failure_threshold = 2
+        }
       }
 
       container_concurrency = 80