feat(networking): Aislar subred de VMs (10.0.100.x) y promover AD DS

This commit is contained in:
Ricardo Monla
2026-02-24 22:32:29 -03:00
parent cec837edbe
commit e8c398c842
3 changed files with 9 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
if [ -f ".env.enc" ]; then
openssl enc -d -aes-256-cbc -in .env.enc -out .env -pass pass:"\$2y\$10\$Xo7lM" 2>/dev/null
echo "Secret successfully decrypted to .env for temporary use."
else
echo "Encrypted .env.enc not found."
fi