diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml
index f512f5c03c23029c072962e30989aa6c2cb5a48e..6a6c099dcc1ada42af4a2f6936dc60ce13e86b63 100644
--- a/ansible/group_vars/all.yml
+++ b/ansible/group_vars/all.yml
@@ -869,6 +869,7 @@ enable_neutron_provider_networks: "no"
 enable_neutron_segments: "no"
 enable_neutron_packet_logging: "no"
 enable_neutron_sfc: "no"
+enable_neutron_taas: "no"
 enable_neutron_trunk: "no"
 enable_neutron_metering: "no"
 enable_neutron_infoblox_ipam_agent: "no"
diff --git a/ansible/roles/neutron/defaults/main.yml b/ansible/roles/neutron/defaults/main.yml
index d0e96646bca4013f75f092118ab49b2e80be9c51..495e31ec1d9abff9a33aef0d1fe7e54ff88852cd 100644
--- a/ansible/roles/neutron/defaults/main.yml
+++ b/ansible/roles/neutron/defaults/main.yml
@@ -664,6 +664,8 @@ neutron_subprojects:
     enabled: "{{ enable_neutron_vpnaas | bool }}"
   - name: "vmware-nsx"
     enabled: "{{ neutron_plugin_agent in ['vmware_dvs', 'vmware_nsxv', 'vmware_nsxv3', 'vmware_nsxp'] }}"
+  - name: "tap-as-a-service"
+    enabled: "{{ enable_neutron_taas | bool }}"
 
 ####################
 # Mechanism drivers
@@ -747,6 +749,8 @@ service_plugins:
     enabled: "{{ neutron_plugin_agent == 'ovn' }}"
   - name: "log"
     enabled: "{{ enable_neutron_packet_logging | bool }}"
+  - name: "taas"
+    enabled: "{{ enable_neutron_taas | bool }}"
 
 neutron_service_plugins: "{{ service_plugins | selectattr('enabled', 'equalto', true) | list }}"
 
@@ -775,6 +779,8 @@ agent_extensions:
     enabled: "{{ enable_neutron_sriov | bool }}"
   - name: "log"
     enabled: "{{ enable_neutron_packet_logging | bool }}"
+  - name: "taas"
+    enabled: "{{ enable_neutron_taas | bool }}"
 
 neutron_agent_extensions: "{{ agent_extensions | selectattr('enabled', 'equalto', true) | list }}"
 
diff --git a/ansible/roles/neutron/tasks/config.yml b/ansible/roles/neutron/tasks/config.yml
index dfbf70384c91561c7f7c4a8d9c357d3120bd88e2..707f30072d8e39edafb625555d39d53ffc7cba53 100644
--- a/ansible/roles/neutron/tasks/config.yml
+++ b/ansible/roles/neutron/tasks/config.yml
@@ -499,3 +499,26 @@
     - neutron_tls_proxy.host_in_groups | bool
   notify:
     - Restart neutron-tls-proxy container
+
+- name: Copying over neutron_taas.conf
+  become: true
+  vars:
+    service_name: "{{ item.key }}"
+    services_need_neutron_taas_conf:
+      - "neutron-server"
+      - "neutron-openvswitch-agent"
+  merge_configs:
+    sources:
+      - "{{ role_path }}/templates/neutron_taas.conf.j2"
+      - "{{ node_custom_config }}/neutron/neutron_taas.conf"
+      - "{{ node_custom_config }}/neutron/{{ inventory_hostname }}/neutron_taas.conf"
+    dest: "{{ node_config_directory }}/{{ item.key }}/neutron_taas.conf"
+    mode: "0660"
+  when:
+    - enable_neutron_taas | bool
+    - item.value.enabled | bool
+    - item.value.host_in_groups | bool
+    - item.key in services_need_neutron_taas_conf
+  with_dict: "{{ neutron_services }}"
+  notify:
+    - "Restart {{ item.key }} container"
diff --git a/ansible/roles/neutron/templates/neutron-openvswitch-agent.json.j2 b/ansible/roles/neutron/templates/neutron-openvswitch-agent.json.j2
index 2cca76036c71ff40fcfaa1e4a08ab38dd09e093f..99f9064ef613946dcb156766a4040c2915d03431 100644
--- a/ansible/roles/neutron/templates/neutron-openvswitch-agent.json.j2
+++ b/ansible/roles/neutron/templates/neutron-openvswitch-agent.json.j2
@@ -7,6 +7,14 @@
             "owner": "neutron",
             "perm": "0600"
         },
+{% if enable_neutron_taas | bool %}
+        {
+            "source": "{{ container_config_directory }}/neutron_taas.conf",
+            "dest": "/etc/neutron/neutron_taas.conf",
+            "owner": "neutron",
+            "perm": "0600"
+        },
+{% endif %}
 {% if check_extra_ml2_plugins is defined and check_extra_ml2_plugins.matched > 0 %}{% for plugin in check_extra_ml2_plugins.files %}
         {
             "source": "{{ container_config_directory }}/{{ plugin.path | basename }}",
diff --git a/ansible/roles/neutron/templates/neutron-server.json.j2 b/ansible/roles/neutron/templates/neutron-server.json.j2
index f1e93a72c359a38aa1195739756a1cfdeee7c1ad..8d6904eac1b603b753af9ea2a7f6da623c9ca73f 100644
--- a/ansible/roles/neutron/templates/neutron-server.json.j2
+++ b/ansible/roles/neutron/templates/neutron-server.json.j2
@@ -13,6 +13,14 @@
             "owner": "neutron",
             "perm": "0600"
         },
+{% if enable_neutron_taas | bool %}
+        {
+            "source": "{{ container_config_directory }}/neutron_taas.conf",
+            "dest": "/etc/neutron/neutron_taas.conf",
+            "owner": "neutron",
+            "perm": "0600"
+        },
+{% endif %}
         {% if neutron_policy_file is defined %}{
             "source": "{{ container_config_directory }}/{{ neutron_policy_file }}",
             "dest": "/etc/neutron/{{ neutron_policy_file }}",
diff --git a/ansible/roles/neutron/templates/neutron_taas.conf.j2 b/ansible/roles/neutron/templates/neutron_taas.conf.j2
new file mode 100644
index 0000000000000000000000000000000000000000..5031871834eff3808c8107d20aec02bb2e42fe3e
--- /dev/null
+++ b/ansible/roles/neutron/templates/neutron_taas.conf.j2
@@ -0,0 +1,6 @@
+[service_providers]
+service_provider = TAAS:TAAS:neutron_taas.services.taas.service_drivers.taas_rpc.TaasRpcDriver:default
+
+[taas]
+driver = neutron_taas.services.taas.drivers.linux.ovs_taas.OvsTaasDriver
+enabled = True
diff --git a/releasenotes/notes/feature_configure-taas-plugin-3753573f8fd2305e.yaml b/releasenotes/notes/feature_configure-taas-plugin-3753573f8fd2305e.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..22106e784fe04f80be6416d9d54f37c99776a6cd
--- /dev/null
+++ b/releasenotes/notes/feature_configure-taas-plugin-3753573f8fd2305e.yaml
@@ -0,0 +1,9 @@
+---
+features:
+  - |
+    Implements [Configure tap-as-a-service plugin on neutron containers].
+    Adds the needed changes and configurations in order to use the
+    neutron plugin, tap-as-a-service, to create por mirrors using
+    `openstack tap` commands.
+    `Blueprint configure-taas-plugin
+    <https://blueprints.launchpad.net/kolla-ansible/+spec/configure-taas-plugin>`__