diff --git a/ansible/roles/tempest/handlers/main.yml b/ansible/roles/tempest/handlers/main.yml
index 64c0f48e148a0ff369431fc14adba967aafe3fb6..09fa546980b9f6040f5d6ab418c5f4856d9debeb 100644
--- a/ansible/roles/tempest/handlers/main.yml
+++ b/ansible/roles/tempest/handlers/main.yml
@@ -4,7 +4,6 @@
     service: "{{ tempest_services[service_name] }}"
     config_json: "{{ tempest_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
     tempest_conf: "{{ tempest_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
-    policy_json: "{{ tempest_policy_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
     tempest_container: "{{ check_tempest_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
   kolla_docker:
     action: "recreate_or_restart_container"
@@ -19,5 +18,4 @@
     - service.enabled | bool
     - config_json.changed | bool
       or tempest_conf.changed | bool
-      or policy_json.changed | bool
       or tempest_container.changed | bool
diff --git a/ansible/roles/tempest/tasks/config.yml b/ansible/roles/tempest/tasks/config.yml
index 374b7816866b7d8cfad8181a76acc0bc9596e4a0..6d45a22e786ac1d05eeba37aa316dff0664b8bb0 100644
--- a/ansible/roles/tempest/tasks/config.yml
+++ b/ansible/roles/tempest/tasks/config.yml
@@ -37,23 +37,6 @@
   notify:
     - Restart tempest container
 
-- name: Check if policies shall be overwritten
-  local_action: stat path="{{ node_custom_config }}/tempest/policy.json"
-  register: tempest_policy
-
-- name: Copying over existing policy.json
-  template:
-    src: "{{ node_custom_config }}/tempest/policy.json"
-    dest: "{{ node_config_directory }}/{{ item.key }}/policy.json"
-  register: tempest_policy_jsons
-  when:
-    - tempest_policy.stat.exists
-    - inventory_hostname in groups[item.value.group]
-    - item.value.enabled | bool
-  with_dict: "{{ tempest_services }}"
-  notify:
-    - Restart tempest container
-
 - name: Check tempest containers
   kolla_docker:
     action: "compare_container"
diff --git a/ansible/roles/tempest/templates/tempest.json.j2 b/ansible/roles/tempest/templates/tempest.json.j2
index 36ddc9ac56c59e7d644439f44d02a05aab8415df..3ff5ea788e6c89e3a6ce266b2fdcebb58295b300 100644
--- a/ansible/roles/tempest/templates/tempest.json.j2
+++ b/ansible/roles/tempest/templates/tempest.json.j2
@@ -6,13 +6,6 @@
             "dest": "/etc/tempest/tempest.conf",
             "owner": "root",
             "perm": "0600"
-        },
-        {
-            "source": "{{ container_config_directory }}/policy.json",
-            "dest": "/etc/tempest/policy.json",
-            "owner": "tempest",
-            "perm": "0600",
-            "optional": true
         }
     ]
 }