diff --git a/terraform/main.tf b/terraform/main.tf
index 1a873bb3053b1f874b447b682aa573fc88a8aa8c..e4d98f1a0d9efc47a91ca417351664cbfe1973cb 100644
--- a/terraform/main.tf
+++ b/terraform/main.tf
@@ -24,3 +24,22 @@ module "nodes" {
   # subnet         = hcloud_network_subnet.subnet.id
   user_data      = file("templates/cloud-init.tpl")
 }
+
+module "workers" {
+  source         = "./modules/hcloud_instance"
+  instance_count = var.replicas_worker
+  location       = var.location
+  name           = "worker"
+  dns_domain     = var.dns_domain
+  dns_zone_id    = var.dns_zone_id
+  image          = var.image
+  labels          = {
+    "k8s.io/node" = "true",
+    "k8s.io/worker" = "true"
+  }
+  placement_group_id = hcloud_placement_group.k8s.id
+  ssh_keys       = data.hcloud_ssh_keys.all_keys.ssh_keys.*.name
+  server_type    = "cx21"
+  # subnet         = hcloud_network_subnet.subnet.id
+  user_data      = file("templates/cloud-init.tpl")
+}
diff --git a/terraform/variables.tf b/terraform/variables.tf
index b8e7f003b00625926fd5b9751be08649a6e8be32..c1f6b4ff248454ab40f23a824a1d0e8eed09659c 100644
--- a/terraform/variables.tf
+++ b/terraform/variables.tf
@@ -4,10 +4,10 @@ variable "replicas_nodes" {
   description = "Count of nodes"
 }
 
-variable "bootstrap" {
-  type        = bool
-  default     = false
-  description = "Whether to deploy a bootstrap instance"
+variable "replicas_worker" {
+  type        = number
+  default     = 0
+  description = "Count of nodes"
 }
 
 variable "dns_domain" {