diff --git a/ansible/roles/murano/tasks/bootstrap.yml b/ansible/roles/murano/tasks/bootstrap.yml
index 69eca17529109781acbf436937c672789d5015ce..31811ae35c2150978471ce86f11f03700a27c489 100644
--- a/ansible/roles/murano/tasks/bootstrap.yml
+++ b/ansible/roles/murano/tasks/bootstrap.yml
@@ -42,7 +42,7 @@
     insecure_registry: "{{ docker_insecure_registry }}"
     name: bootstrap_murano
     image: "{{ murano_api_image_full }}"
-    volumes: "{{ node_config_directory }}/murano-api/:/opt/kolla/murano-api/:ro"
+    volumes: "{{ node_config_directory }}/murano-api/:/opt/kolla/config_files/:ro"
     env:
       KOLLA_BOOTSTRAP:
       KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
diff --git a/ansible/roles/murano/tasks/config.yml b/ansible/roles/murano/tasks/config.yml
index 2398f819684cd32ff88d2a856f849dc7ece512b7..0033972ba1ca7d0b3c47cbf64a0735999bbb3dfd 100644
--- a/ansible/roles/murano/tasks/config.yml
+++ b/ansible/roles/murano/tasks/config.yml
@@ -19,6 +19,12 @@
     config_dest: "{{ node_config_directory }}/{{ service_name }}/murano.conf"
   when: inventory_hostname in groups['murano-engine']
 
+- name: Copying over murano-engine JSON configuration file
+  template:
+    src: "murano-engine.json.j2"
+    dest: "{{ node_config_directory }}/murano-engine/config.json"
+  when: inventory_hostname in groups['murano-engine']
+
 - include: ../../config.yml
   vars:
     service_name: "murano-api"
@@ -38,3 +44,9 @@
       - "{{ node_templates_directory }}/{{ service_name }}/{{ service_name }}.conf_augment"
     config_dest: "{{ node_config_directory }}/{{ service_name }}/murano.conf"
   when: inventory_hostname in groups['murano-api']
+
+- name: Copying over murano-api JSON configuration file
+  template:
+    src: "murano-api.json.j2"
+    dest: "{{ node_config_directory }}/murano-api/config.json"
+  when: inventory_hostname in groups['murano-api']
diff --git a/ansible/roles/murano/tasks/start.yml b/ansible/roles/murano/tasks/start.yml
index c857ef0fbd84096725f7bd2293b46d37a94714a7..3ec22317008264ff045df35ebb3de2b4c92bed6d 100644
--- a/ansible/roles/murano/tasks/start.yml
+++ b/ansible/roles/murano/tasks/start.yml
@@ -13,7 +13,7 @@
     insecure_registry: "{{ docker_insecure_registry }}"
     name: murano_engine
     image: "{{ murano_engine_image_full }}"
-    volumes: "{{ node_config_directory }}/murano-engine/:/opt/kolla/murano-engine/:ro"
+    volumes: "{{ node_config_directory }}/murano-engine/:/opt/kolla/config_files/:ro"
     volumes_from:
     env:
       KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
@@ -33,7 +33,7 @@
     insecure_registry: "{{ docker_insecure_registry }}"
     name: murano_api
     image: "{{ murano_api_image_full }}"
-    volumes: "{{ node_config_directory }}/murano-api/:/opt/kolla/murano-api/:ro"
+    volumes: "{{ node_config_directory }}/murano-api/:/opt/kolla/config_files/:ro"
     env:
       KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
   when: inventory_hostname in groups['murano-api']
diff --git a/ansible/roles/murano/templates/murano-api.json.j2 b/ansible/roles/murano/templates/murano-api.json.j2
new file mode 100644
index 0000000000000000000000000000000000000000..bfafba91e558f484f7698f9fcd117461f9a1e7f3
--- /dev/null
+++ b/ansible/roles/murano/templates/murano-api.json.j2
@@ -0,0 +1,11 @@
+{
+    "command": "/usr/bin/murano-api --config-file /etc/murano/murano.conf",
+    "config_files": [
+        {
+            "source": "/opt/kolla/config_files/murano.conf",
+            "dest": "/etc/murano/murano.conf",
+            "owner": "murano",
+            "perm": "0644"
+        }
+    ]
+}
diff --git a/ansible/roles/murano/templates/murano-engine.json.j2 b/ansible/roles/murano/templates/murano-engine.json.j2
new file mode 100644
index 0000000000000000000000000000000000000000..d4ad92c083f072dd0039d47903dc25b1a546fe1b
--- /dev/null
+++ b/ansible/roles/murano/templates/murano-engine.json.j2
@@ -0,0 +1,11 @@
+{
+    "command": "/usr/bin/murano-engine --config-file /etc/murano/murano.conf",
+    "config_files": [
+        {
+            "source": "/opt/kolla/config_files/murano.conf",
+            "dest": "/etc/murano/murano.conf",
+            "owner": "murano",
+            "perm": "0644"
+        }
+    ]
+}
diff --git a/docker/murano/murano-api/start.sh b/docker/murano/murano-api/start.sh
index 7d712177d0a07ae3e8f6ef3f777606d5eb6b11b5..59599398e9e28a30f098e76dbb825590e7c4bff5 100755
--- a/docker/murano/murano-api/start.sh
+++ b/docker/murano/murano-api/start.sh
@@ -1,14 +1,12 @@
 #!/bin/bash
 set -o errexit
 
-CMD="/usr/bin/murano-api"
-ARGS="--config-file /etc/murano/murano.conf"
-
 # Loading common functions.
 source /opt/kolla/kolla-common.sh
 
-# Execute config strategy
-set_configs
+# Generate run command
+python /opt/kolla/set_configs.py
+CMD=$(cat /run_command)
 
 # Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
 # of the KOLLA_BOOTSTRAP variable being set, including empty.
@@ -17,4 +15,4 @@ if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
     exit 0
 fi
 
-exec $CMD $ARGS
+exec $CMD
diff --git a/docker/murano/murano-engine/start.sh b/docker/murano/murano-engine/start.sh
index 22834fc4c1ed3bab979740b4a98d83e844342997..d43e035812d1eef27daf45c0254ea4b6d105b148 100755
--- a/docker/murano/murano-engine/start.sh
+++ b/docker/murano/murano-engine/start.sh
@@ -1,13 +1,11 @@
 #!/bin/bash
 set -o errexit
 
-CMD="/usr/bin/murano-engine"
-ARGS="--config-file /etc/murano/murano.conf"
-
 # Loading common functions.
 source /opt/kolla/kolla-common.sh
 
-# Execute config strategy
-set_configs
+# Generate run command
+python /opt/kolla/set_configs.py
+CMD=$(cat /run_command)
 
-exec $CMD $ARGS
+exec $CMD