Implement clear text passwords with automatic hashing
- Change passwords in group_vars/all.yml to clear text (Oracle123, Grid123)
- Use password_hash('sha512') filter in users_configuration.yml for automatic hashing
- Maintain same security level but with more readable and maintainable passwords
- Passwords are hashed automatically during playbook execution
This commit is contained in:
@@ -16,6 +16,6 @@ secure_configuration: false
|
||||
|
||||
scripts_dir: "/home/oracle/scripts"
|
||||
|
||||
# Mots de passe utilisateurs système (hashés pour /etc/shadow)
|
||||
oracle_user_password: "$6$0xHoAXXF$K75HKb64Hcb/CEcr3YEj2LGERi/U2moJgsCK.ztGxLsKoaXc4UBiNZPL0hlxB5ng6GL.gyipfQOOXplzcdgvD0"
|
||||
grid_user_password: "$6$0xHoAXXF$K75HKb64Hcb/CEcr3YEj2LGERi/U2moJgsCK.ztGxLsKoaXc4UBiNZPL0hlxB5ng6GL.gyipfQOOXplzcdgvD0"
|
||||
# Mots de passe utilisateurs système (en clair - seront hashés automatiquement)
|
||||
oracle_user_password: "Oracle123"
|
||||
grid_user_password: "Grid123"
|
||||
Reference in New Issue
Block a user