Push
banner
pushtech.bsky.social
Push
@pushtech.bsky.social
DevOps Engineer junkie...🤪
You don’t need the Azure portal to validate network security. Use shell scripts to test NSGs, VNet peering, and VM-to-VM SSH. Fast checks, clear visibility, and better troubleshooting.
#Azure #DevOps #Cloud
November 10, 2025 at 11:04 PM
Ever find yourself bouncing between Bash and PowerShell on Windows? 😩

Here’s a game changer:
powershell.exe -c "Get-Date"

Run PowerShell commands inside Bash.

No more tab-hopping chaos [#&÷<%<<], just smooth terminal multitasking. ⚡

#DevTips #Windows #PowerShell #Bash
October 21, 2025 at 7:49 PM
Remember sdk-auth? Yeah… it’s officially gone. 💀

One day you’re deploying resources. The next you’re staring at an auth error, wondering where it all went wrong. 😅

Goodbye sdk-auth, hello AZURE_CLIENT_ID and friends.

Evolve or deploy nothing.

#Azure #Cloud #DevOps #IaC
October 17, 2025 at 2:30 PM
Azure users...
General-purpose v1 (GPv1) storage accounts retire on Oct 13, 2026.

➡️ Migrate to GPv2 to avoid disruption + unlock better performance, security & features.

Don’t wait until the last minute—future-proof now! 🚀
#Azure #Cloud #Storage
October 1, 2025 at 12:59 PM
Ever had your pipeline fail ‘cause your self-hosted agent ran out of memory? 🫨 That’s what happens when you go cheap on VM sizes.
Sure, you can clean dirs, prune Git, or kill processes… but sometimes the best fix is just: add more RAM 💾💡

#DevOps #Azurepipelines #AzureDevOps
September 19, 2025 at 5:57 PM
Road 🗺 to next stop #DevOps Engineer...🏃🏿‍♂️

I'm not tired 😪🥱😩

#Azure #CloudComputing #GitHub #Terraform #Linux
September 18, 2025 at 3:30 PM
Terraform: State Mgmt 🗂️
State file tracks what’s deployed. Remote backends (Azure, AWS, GCP) keep it secure + sharable.

Best practices: encrypt 🔐, lock 🛑, don’t version control the state file.

State = Terraform’s single source of truth. Manage it well or face infra chaos. 🚀
#Terraform #IaC #DevOps
September 16, 2025 at 3:15 PM
Authentication = “Prove you are who you say you are.”

Authorization = “Cool, but are you allowed to do that?”

In Azure, it’s the difference between showing your ID at the door vs. actually getting into the VIP lounge. 🎟️
#Azure #DevOps #Cloud #Terraform #azurerm
September 10, 2025 at 7:14 PM
Terraform Dependency Types ⚙️

• Implicit: Terraform figures out resource order automatically.
• Explicit: Use depends_on to define order when it’s unclear.

Why it matters:
✔️ Ensures correct build order
✔️ Prevents failures from missing prereqs
✔️ Improves clarity in complex configs
#Terraform #IaC
September 9, 2025 at 1:58 PM
🔑 Terraform Core vs Provider Versions:

Core = CLI (e.g., 1.6.2)
Provider = Plugin (e.g., AZURE 5.24.0)

Why it matters:
✔️ Prevents breaking changes
✔️ Ensures consistent infra
✔️ Reproducible CI/CD
✔️ Avoids API issues

Lock versions in configs for stability.
#Terraform #IaC #DevOps
September 7, 2025 at 12:33 PM