Member-only story

🔥Let’s Do DevOps: Using the Tofu/Terraform AzApi Provider to Find All the Subnets Everywhere!🚀

Kyler Middleton
2 min readJun 4, 2024

--

This blog series focuses on presenting complex DevOps projects as simple and approachable via plain language and lots of pictures. You can do it!

A note as we start — I’ve always been an open source kid, and I’ll continue to be so. To reflect that, I’ll be using OpenTofu/Tofu primarily, rather than Terraform, which is now not an open source tool due to a relicensing by Hashicorp. That said, at this point all the code I’ll share will work on both platform exactly the same. Let me know if you want to hear me expand on why I’ve made this decision or other topics here.

Also! If you prefer video to reading, I gave this article as a talk here: https://www.youtube.com/watch?v=THbB8tLJRPY

Hey all!

I’ve had a series of projects recently that I’ve historically told folks that “sorry, tofu can’t do that,” and as my skills have expanded I’ve found other ways to do so. One example is to find all the subnets within an entire Azure subscription and get all their GUIDs. Another is to find all the VMs matching a name pattern and then grab their primary private IP to put into a list.

Tofu is capable of doing all this when it’s in the same terraform state, or when it has exact information about what it’s looking up, like how many servers to find, and their exact names, and that the resource group they live in exists. If any of that information is incomplete (like, of course it will be in real production environments with variable counts of resources), Tofu falls on its face.

However, I’ve been digging into the Azure API (aka, AzApi) Provider, an alternate Azure provider to the very common AzureRm provider, and it’s capable of ✨amazing✨ things!

I’ll dig into two major examples, and share how I’ve been able to solve them, as well as every step of the way how I’ve resolved the problems and gotten them working. If you’d rather skip right to the code, scroll to the bottom for the github repo link.

Thanks all, let’s do this!

I’ve Moved To Lets Do DevOps

From here on out, all content will be published on Lets Do DevOps for free. I want to give back to the community as much as I’m able. Please subscribe there to avoid missing any content. Thanks all ❤.

You can find this article here:

--

--

Kyler Middleton
Kyler Middleton

Written by Kyler Middleton

DevNetSecOps, DevRel, cloud security chick. I will teach you, it’s unavoidable. She/Her 🏳️‍🌈🏳️‍🌈, INFJ-A, support the EFF!

Responses (1)

Write a response