diff --git a/recover-control-plane.yml b/recover-control-plane.yml
index cd6bfde2b641b387cc2d3664cc0dcce1980a00fe..aca777ae1436ccbf67d0e36b1f193e70290114aa 100644
--- a/recover-control-plane.yml
+++ b/recover-control-plane.yml
@@ -1,13 +1,13 @@
 ---
 - hosts: localhost
   gather_facts: False
+  become: no
   tasks:
-    - name: "Check ansible version !=2.7.0"
+    - name: "Check ansible version >=2.7.8"
       assert:
-        msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
+        msg: "Ansible must be v2.7.8 or higher"
         that:
-          - ansible_version.string is version("2.7.0", "!=")
-          - ansible_version.string is version("2.6.0", ">=")
+          - ansible_version.string is version("2.7.8", ">=")
       tags:
         - check
   vars: