diff --git a/tasks/configure_nfs_mounts.yml b/tasks/configure_nfs_mounts.yml
index 213d3efed2944e91bd522324e3476f8ba8bc5f7f..9f6034f2a180723a4e0dafaa7453faaa09033440 100644
--- a/tasks/configure_nfs_mounts.yml
+++ b/tasks/configure_nfs_mounts.yml
@@ -41,36 +41,6 @@
     label: "{{ item.0 }}"
   when: ansible_hostname in item.0.hosts
 
-# - name: create mount points and mount shares for Rosetta DEV
-#   ansible.posix.mount:
-#     fstype: "{{ item.value.fstype | default('nfs') }}"
-#     opts: "{{ item.value.mount_opts | default('auto,nfsvers=4') }}"
-#     src: "{{ item.value.src }}"
-#     path: "{{ item.value.path }}"
-#     state: "{{ item.value.state | default('mounted') }}"
-#   loop: "{{ volumes.dev | dict2items }}"
-#   when: ansible_hostname == "sdvlzarosappdev"
-#
-# - name: create mount points and mount shares for Rosetta TEST
-#   ansible.posix.mount:
-#     fstype: "{{ item.value.fstype | default('nfs') }}"
-#     opts: "{{ item.value.mount_opts | default('auto,nfsvers=4') }}"
-#     src: "{{ item.value.src }}"
-#     path: "{{ item.value.path }}"
-#     state: "{{ item.value.state | default('mounted') }}"
-#   loop: "{{ volumes.test | dict2items }}"
-#   when: ansible_hostname == "sdvrosetta-test"
-#
-# - name: create mount points and mount shares for Rosetta PROD
-#   ansible.posix.mount:
-#     fstype: "{{ item.value.fstype | default('nfs') }}"
-#     opts: "{{ item.value.mount_opts | default('auto,nfsvers=4') }}"
-#     src: "{{ item.value.src }}"
-#     path: "{{ item.value.path }}"
-#     state: "{{ item.value.state | default('mounted') }}"
-#   loop:: "{{ volumes.prod | dict2items }}"
-#   when: ansible_hostname in "sdvlzarosappprod0"
-#
 - name: find /mnt/sdvlzasubapp*_access directories
   ansible.builtin.find:
     paths: "/mnt/"