FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Quick Tip: Terraform vs Bicep: Azure IaC comparison
NewsDevOps

Quick Tip: Terraform vs Bicep: Azure IaC comparison

via Dev.to DevOpskarleeov1mo ago

Quick Tip: Terraform vs Bicep: Azure IaC comparison The Problem Setting up robust Azure infrastructure can be challenging and error-prone. The Solution Here's a quick command that solves this: # Your command here az resource list --query "[?contains(name, 'searchTerm')]" --output table How it works This command uses JMESPath query syntax to filter resources. The --query parameter allows you to: Filter results based on conditions Transform output format Extract specific fields Example output Name ResourceGroup Location ----------------- --------------- ---------- myResource1 myRG eastus myResource2 myRG westus Why This Works Fast : Queries run server-side Flexible : JMESPath is powerful Readable : Table output is clean Pro Tips Tip 1: Combine with other commands az resource list --query "[?type=='Microsoft.Storage/storageAccounts']" | jq '.[].name' Tip 2: Save as alias # Add to ~/.bashrc or ~/.zshrc alias azfind = 'az resource list --query' Tip 3: Export to CSV az resource list --query

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
20 views

Related Articles

News

zxing Decoder Online|2026

Medium Programming • 1d ago

Don't ignore your desktop PC's empty M.2 slots - they're more useful than you think
News

Don't ignore your desktop PC's empty M.2 slots - they're more useful than you think

ZDNet • 1d ago

My favorite color e-reader is still $80 off, but hurry if you want to save
News

My favorite color e-reader is still $80 off, but hurry if you want to save

ZDNet • 1d ago

Cosine Similarity vs Dot Product in Attention Mechanisms
News

Cosine Similarity vs Dot Product in Attention Mechanisms

Dev.to • 1d ago

RHAPSODY OF REALITIES - 30TH MARCH 2026
"What a truth this is!
News

RHAPSODY OF REALITIES - 30TH MARCH 2026 "What a truth this is!

Medium Programming • 1d ago

Discover More Articles