diff --git a/terraform/main.tf b/terraform/main.tf
index 861e30ebf645ab5222d677bd43383565f63408e1..1d2eab3f53b1b5fd845f9d08a1af15553b3bcfd9 100644
--- a/terraform/main.tf
+++ b/terraform/main.tf
@@ -39,30 +39,11 @@ resource "scaleway_instance_security_group" "www" {
   inbound_default_policy  = "drop"
   outbound_default_policy = "accept"
 
-  inbound_rule {
-    action = "accept"
-    port   = "22"
-  }
-
-  inbound_rule {
-    action = "accept"
-    port   = "80"
-  }
-
-  inbound_rule {
-    action = "accept"
-    port   = "8080"
-  }
-
-  inbound_rule {
-    action = "accept"
-    port   = "8081"
-  }
-
   inbound_rule {
     action = "accept"
     port   = "443"
   }
+
 }
 
 ##############################