diff --git a/main.tf b/main.tf
index 2c71477a61eefb2de7fe28a0e164fd6f6e21f53d..2a0c4e6eeb48734a43516407c3b1131f62353b38 100644
--- a/main.tf
+++ b/main.tf
@@ -135,10 +135,8 @@ resource "null_resource" "ops" {
   # compute node registration on ohpc
   provisioner "remote-exec" {
     inline = [
-      # Git clone command to clone the repository to the root directory
       "git clone https://github.com/jprorama/CRI_XCBC.git /",
-
-       for node, net in module.nodes.network:
+        for node, net in module.nodes.network:
       "ansible-playbook -c local -i /CRI_XCBC/hosts -l `hostname -s` -e  \"{'cod_deploy':'false', 'compute_nodes':[{'name':'${node}', 'ip':'${net[0].fixed_ip_v4}', 'mac':'${net[0].mac}', 'vnfs':'', 'sockets':'1', 'corespersocket':'1'}]}\" /CRI_XCBC/site-ops.yaml -b -v"
     ]
   }