diff --git a/README-config.md b/README-config.md
index 5f05fd9d75fd278451465f11e83a9aad1a0484c8..86859471c4dcfa262bb8f39438723a4d51ec10aa 100644
--- a/README-config.md
+++ b/README-config.md
@@ -56,12 +56,12 @@ Example playbook to read config options:
       register: result
     - name: display default login shell
       debug:
-        msg: '{{ result.config.defaultlogin }}'
+        msg: '{{ result.config.defaultshell }}'
 
     - name: ensure defaultloginshell and maxusernamelength are set as required
       ipaconfig:
         ipaadmin_password: password
-        defaultlogin: /bin/bash
+        defaultshell: /bin/bash
         maxusername: 64
 ```