Two new voices?have joined the?Azure Terraformer Medium Publication?– my esteemed colleagues?Matt White?and?Jared Holgate! ?? Both are key thought leaders at Microsoft, especially when it comes to?Terraforming Azure, and I can't wait to read and learn from their unique insights and perspectives. Help me welcome them to the team, and don't miss out on their fantastic ideas—follow the publication by clicking the link below so their content shows up on your reading list! ???? Happy Azure Terraforming!!! https://lnkd.in/eTza5VXy #AzureTerraformer #Terraform #Azure #ThoughtLeadership #CloudComputing #DevOps
Azure Terraformer
科技、信息和网络
Powell,OH 20,296 位关注者
Teaching People how to Azure and how to Terraform
关于我们
Maker of funny videos and educational content about Cloud Architecture, DevOps and Software Development at their intersection. Focusing on Microsoft Azure and HashiCorp's Terraform. Sourced from my 25 years as a software developer, solution architect, consultant, technology executive and problem solver.
- 网站
-
https://www.youtube.com/@azure-terraformer
Azure Terraformer的外部链接
- 所属行业
- 科技、信息和网络
- 规模
- 1 人
- 总部
- Powell,OH
- 类型
- 自有
- 创立
- 2023
地点
-
主要
US,OH,Powell,43015
Azure Terraformer员工
动态
-
Not one to miss!!! ??
There's less than a week until HashiConf! Are you going? I'll see you in Boston ?? https://bit.ly/3AElSMi #hashicorp #hashiconf #boston #cloud #automation
-
Module authors take note! Your resource blocks respect null! ??
Null is not nothing. It’s a value type in Terraform who’s never invited to the party but always seems to show up. Instead, I would encourage you to start inviting them, to the module party. Null is not nothing, it is a value that represent the absence of a value. Making it the perfect default value for your input variables. When an input variable of your module isn’t set, Terraform will fall back on the provider’s default for that optional attribute, or the upstream API’s default, if one exists. Any default value for an input variable, other than null, is a value you have to maintain.
-
???Excited to welcome the one and only "Techie Lass" herself, Sarah Lean, to the cadre of Azure Terraform luminaries on the Azure Terraformer Medium publication!??? Looking forward to hearing more of her practical insights and wisdom on all things Azure and Terraform! ???? #Welcome #AzureTerraformer #TechieLass #TerraformTips ???Don’t miss out!?Follow the Azure Terraformer publication on Medium to stay updated with the latest from Sarah and the rest of the Azure Terraforming experts! ?? https://lnkd.in/eTza5VXy
Azure Terraformer – Medium
medium.com
-
Check out Episode 3 of the App Service Adventure! ?? This time, I'm refactoring shared infrastructure like I'm Marie Kondo tidying up code—if it doesn't spark joy, it's out! ??? Watch me declutter Terraform scripts and maybe, just maybe, avoid breaking the space-time continuum. If you thought refactoring was dull, think again! Dive in for laughs, lessons, and likely a few 'Eureka!' moments. https://lnkd.in/ecFWFfhy
Terraform Code Review: Multi-Tenant App Service Solution PART 3
https://www.youtube.com/
-
Super interesting. ?? Also further confirmation to not fall into the trap of passing out “depends_on” like candy!!!! ??????
I never had a reason to CPU profile Terraform until today when I deployed 20,000 random pets, aiming to create some of the most unusual cycles in a graph imaginable. Typically, there is no reason to profile Terraform, as it will point you to results you can't really change anyways. But if you want to profile Terraform for whatever reason, you can do so using pprof: https://lnkd.in/ecMKYaFy Excess of dependencies causes Terraform to spend more CPU cycles on building and walking the dependency graph. Also, marshaling the state happens sometimes more than once, when you apply for instance, as an artifact is passed between plan and apply. But I'll spare you the all the technical details. A takeaway from today is, avoid marking objects with an explicit dependency using?`depends_on`?unless it’s really necessary, especially within module calls or when referencing modules, as this creates unnecessary dependencies. Don't depends_on it, depend on it.