From 58fc7ab0e8db2f5ac3f68c7621971f07e02d135a Mon Sep 17 00:00:00 2001 From: Krish Moodbidri <krish94@uab.edu> Date: Wed, 28 Feb 2024 14:03:44 -0600 Subject: [PATCH] matched for loop syntax to that in master branch --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 461d8fa..2c71477 100644 --- a/main.tf +++ b/main.tf @@ -138,7 +138,7 @@ resource "null_resource" "ops" { # 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" ] } -- GitLab