diff --git a/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py b/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py
index 8589791443a6e97476649e1854ceaf79f38487ed..b34bec3967d7cbda6b509a165c9a23cc5bec8fb2 100644
--- a/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py
+++ b/roles/ipasmartcard_server/library/ipasmartcard_server_get_vars.py
@@ -36,9 +36,8 @@ short_description:
   Get variables from ipaplatform and ipaserver and python interpreter.
 description:
   Get variables from ipaplatform and ipaserver and python interpreter.
-options:
 author:
-    - Thomas Woerner
+    - Thomas Woerner (@t-woerner)
 '''
 
 EXAMPLES = '''
diff --git a/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py b/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py
index 7463efef423995ec5124fabf05964c985fac8762..b776e58479ee6338fc8a3eb26aafd42a1e3caaa1 100644
--- a/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py
+++ b/roles/ipasmartcard_server/library/ipasmartcard_server_validate_ca_certs.py
@@ -41,9 +41,11 @@ options:
     description:
       List of files containing CA certificates for the service certificate
       files
-    required: yes
+    type: list
+    elements: str
+    required: no
 author:
-    - Thomas Woerner
+    - Thomas Woerner (@t-woerner)
 '''
 
 EXAMPLES = '''
@@ -63,7 +65,8 @@ except ImportError:
 def main():
     ansible_module = AnsibleModule(
         argument_spec=dict(
-            ca_cert_files=dict(required=False, type='list', default=[]),
+            ca_cert_files=dict(required=False, type='list', elements='str',
+                               default=[]),
         ),
         supports_check_mode=False,
     )