diff --git a/tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml b/tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml
index a8d4ced08ef4ade750f8792ec8df021338c34dc2..939d432a64dabe3a7104610edcf5776110a1a737 100644
--- a/tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml
+++ b/tests/cloud_playbooks/roles/packet-ci/tasks/create-vms.yml
@@ -17,7 +17,7 @@
   template:
     src: "vm.yml.j2"
     dest: "/tmp/{{ test_name }}/instance-{{ vm_id }}.yml"
-  loop: "{{ range(0, vm_count|int, 1) | list }}"
+  loop: "{{ range(1, vm_count|int + 1, 1) | list }}"
   loop_control:
     index_var: vm_id
 
@@ -25,14 +25,14 @@
   k8s:
     state: present
     src: "/tmp/{{ test_name }}/instance-{{ vm_id }}.yml"
-  loop: "{{ range(0, vm_count|int, 1) | list }}"
+  loop: "{{ range(1, vm_count|int + 1, 1) | list }}"
   loop_control:
     index_var: vm_id
 
 - name: Wait for vms to have ipaddress assigned
   shell: "kubectl get vmis -n {{ test_name }} instance-{{ vm_id }} -o json | jq '.status.interfaces[].ipAddress' | tr -d '\"'"
   register: vm_ips
-  loop: "{{ range(0, vm_count|int, 1) | list }}"
+  loop: "{{ range(1, vm_count|int + 1, 1) | list }}"
   loop_control:
     index_var: vm_id
   retries: 20