From cd96954bf194dabd3cd9e92fbda68044699cd4b0 Mon Sep 17 00:00:00 2001 From: Yacine31 Date: Tue, 2 Dec 2025 13:50:45 +0100 Subject: [PATCH] Create shared Oracle variables in group_vars/all.yml - Extract common Oracle variables from role defaults to group_vars/all.yml - Variables are now shared across all roles without duplication - Maintains backward compatibility with existing role defaults - Follows Ansible best practices for variable organization --- group_vars/all.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 group_vars/all.yml diff --git a/group_vars/all.yml b/group_vars/all.yml new file mode 100644 index 0000000..35b70f1 --- /dev/null +++ b/group_vars/all.yml @@ -0,0 +1,11 @@ +--- +# Variables communes Oracle partagées entre tous les rôles +# Ces variables sont automatiquement chargées par Ansible pour tous les hôtes + +oracle_version: "19.0.0" +oracle_base: "/u01/app/oracle" +oracle_home: "{{ oracle_base }}/product/{{oracle_version}}/dbhome_1" +oracle_inventory: "/u01/app/oraInventory" +oracle_sources: "/u01/sources" +oracle_oradata: "/u02/oradata/" +oracle_fra: "/u03/fast_recovery_area/" \ No newline at end of file