diff --git a/tasks/apache.yml b/tasks/apache.yml
index 099c24e629ff374e8eb6f4fdf0cf6702f05f8143..7aa2cc9ccb411148777caa866ffcbe5a3d3f81e8 100644
--- a/tasks/apache.yml
+++ b/tasks/apache.yml
@@ -55,7 +55,7 @@
     - redirect-ssl
     - other-vhosts-access-log
   notify:
-    - "Restart Apache"
+    - Restart Apache
   tags:
     - ApacheConfig
 
@@ -72,7 +72,7 @@
     src: '{{inventory_dir}}/files/ssl/{{item.1.file}}'
     dest: /etc/ssl/private
   with_subelements:
-    - {{ apache_certificates }}
+    - '{{( apache_certificates }})'
     - certs
   notify:
     - Restart Apache
@@ -108,8 +108,8 @@
     mode: 0644
   when: apache_server_default == "yes"
   notify:
-    - "Restart Apache"
-    - "Checkout htdocs for default"
+    - Restart Apache
+    - Checkout htdocs for default
 
 - name: Configuration file for default ssl site
   template:
@@ -120,8 +120,8 @@
     mode: 0644
   when: apache_server_default_ssl == "yes"
   notify:
-    - "Restart Apache"
-    - "Checkout htdocs for default"
+    - Restart Apache
+    - Checkout htdocs for default
 
 - name: Configuration file for our site(s)
   template:
@@ -132,8 +132,8 @@
     mode: 0644
   with_items: '{{ apache_server_defs }}'
   notify:
-    - "Restart Apache"
-    - "Checkout htdocs for our site(s)"
+    - Restart Apache
+    - Checkout htdocs for our site(s)
 
 - name: Disable the default site
   command: a2dissite {{ item }}