diff --git a/ansible/roles/placement/tasks/config.yml b/ansible/roles/placement/tasks/config.yml
index 60d3a65622a127b0e7096955092ca051421b2c09..d29f8cf051d11649a7b62d9e5fad8284d76334fa 100644
--- a/ansible/roles/placement/tasks/config.yml
+++ b/ansible/roles/placement/tasks/config.yml
@@ -73,12 +73,16 @@
   vars:
     service: "{{ placement_services['placement-api'] }}"
   template:
-    src: "placement-api-wsgi.conf.j2"
+    src: "{{ item }}"
     dest: "{{ node_config_directory }}/placement-api/placement-api-wsgi.conf"
     mode: "0660"
   when:
     - inventory_hostname in groups[service.group]
     - service.enabled | bool
+  with_first_found:
+    - "{{ node_custom_config }}/placement/{{ inventory_hostname }}/placement-api-wsgi.conf"
+    - "{{ node_custom_config }}/placement/placement-api-wsgi.conf"
+    - "placement-api-wsgi.conf.j2"
   notify:
     - Restart placement-api container
 
diff --git a/releasenotes/notes/bug-1898766-ffc55c97230d8221.yaml b/releasenotes/notes/bug-1898766-ffc55c97230d8221.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..4a980f09fcf448e62ca2a799f90c2af011443a22
--- /dev/null
+++ b/releasenotes/notes/bug-1898766-ffc55c97230d8221.yaml
@@ -0,0 +1,6 @@
+---
+fixes:
+  - |
+    Add with_first_found on placement for placement-api wsgi configuration
+    to allow overwrite from users.
+    `LP#1898766 <https://launchpad.net/bugs/1898766>`__