Terraform 0.12: HCL2 and Provider Improvements

If you haven’t upgraded to Terraform 0.12 yet, now’s the time. The new HCL2 syntax is a game-changer for infrastructure code. Here’s what changed. Major Improvements First-class expressions: No more interpolation everywhere For expressions: Transform collections inline Dynamic blocks: Generate nested blocks programmatically Improved type system: Better validation and error messages Old vs New Syntax […]

Read more โ†’

Azure Functions 3.0: What’s New for .NET Developers

Azure Functions 3.0 is now generally available, bringing .NET Core 3.1 support and significant improvements. Here’s what developers need to know. Key Improvements .NET Core 3.1 Support: Run your functions on the LTS version Dependency Injection: First-class DI in the functions runtime Improved Cold Start: Faster startup times in consumption plan HTTP Triggered Functions: ASP.NET […]

Read more โ†’

C# 8.0: Nullable Reference Types in Practice

The “Billion Dollar Mistake” – the null reference – is finally being addressed in C# 8.0. Nullable Reference Types (NRT) are not just a compiler check; they are a fundamental shift in how we design software. Enabling NRT To enable it, add <Nullable>enable</Nullable> to your .csproj. Prepare for a sea of yellow warnings. Do not […]

Read more โ†’