საიდუმლოებები (API გასაღებები, პароლები, tokens, დაშიფვრის გასაღებები) უნდა იყოს მართულია დაცულად — არასოდეს hardcoded კოდში ან committed version controlში, არამედ შენახული და მომდინარე უსაფრთხოდ. ცუდი საიდუმლოების მართვა არის გავრცელებული, სერიოზული დარღვევის წყარო.
მთავარი წესი: არასოდეს hardcode ან commit საიდუმლოებები
❌ NEVER hardcode secrets in source code or commit them to Git:
→ committed secrets are in the repo HISTORY (exposed even if "removed" later)
→ public repos / leaks expose them to attackers (bots scan GitHub for keys constantly)
→ a TOP cause of breaches (leaked AWS keys, database passwords, API tokens)
⚠️ If a secret IS committed/leaked → ROTATE it immediately (it's compromised)
