diff --git a/roles/bootstrap-os/tasks/bootstrap-centos.yml b/roles/bootstrap-os/tasks/bootstrap-centos.yml
index 5822c24a4effb6c4fadd28700e63f9eb5d574269..1e7ca3653cbea4373d6e274bf9e65b2c7a749da0 100644
--- a/roles/bootstrap-os/tasks/bootstrap-centos.yml
+++ b/roles/bootstrap-os/tasks/bootstrap-centos.yml
@@ -32,11 +32,12 @@
 - name: Enable Oracle Linux repo
   ini_file:
     dest: "/etc/yum.repos.d/oracle-linux-ol{{ ansible_distribution_major_version }}.repo"
-    section: "{{ item }}"
-    option: enabled
-    value: "1"
+    section: "ol{{ ansible_distribution_major_version }}_addons"
+    option: "{{ item.option }}"
+    value: "{{ item.value }}"
   with_items:
-    - "ol{{ ansible_distribution_major_version }}_addons"
+    - { option: "enabled", value: "1" }
+    - { option: "baseurl", value: "http://yum.oracle.com/repo/OracleLinux/OL{{ ansible_distribution_major_version }}/addons/x86_64/" }
   when:
     - '"Oracle" in os_release.stdout'
     - (ansible_distribution_version | float) >= 7.6