diff --git a/ansible/roles/cyborg/templates/cyborg.conf.j2 b/ansible/roles/cyborg/templates/cyborg.conf.j2
index 89a3191090..0b00cc4cc8 100644
--- a/ansible/roles/cyborg/templates/cyborg.conf.j2
+++ b/ansible/roles/cyborg/templates/cyborg.conf.j2
@@ -2,13 +2,12 @@
 auth_strategy = keystone
 log_dir = /var/log/kolla/cyborg
 debug = {{ cyborg_logging_debug }}
-notification_topics = notifications
 
 transport_url = {{ rpc_transport_url }}
 
 [api]
 port = {{ cyborg_api_port }}
-host = {{ api_interface_address }}
+host_ip = {{ api_interface_address }}
 
 [database]
 connection = mysql+pymysql://{{ cyborg_database_user }}:{{ cyborg_database_password }}@{{ cyborg_database_address }}/{{ cyborg_database_name }}
diff --git a/releasenotes/notes/fix-cyborg-host-config-dee1d79476b94981.yaml b/releasenotes/notes/fix-cyborg-host-config-dee1d79476b94981.yaml
new file mode 100644
index 0000000000..8c1ac75224
--- /dev/null
+++ b/releasenotes/notes/fix-cyborg-host-config-dee1d79476b94981.yaml
@@ -0,0 +1,6 @@
+---
+fixes:
+  - |
+    Fix cyborg api doesn't listen on api interface. change host to
+    host_ip in cyborg.conf. See the `cyborg documentation
+    <https://docs.openstack.org/cyborg/latest/configuration/sample-config.html>`__