Speeding up Azure development by not using Terraform
1–10 of 87 posts
Re: Speeding up Azure development by not using Terraform
#2> If you wanted to be able to completely customise your infrastructure, using IaC can be practical. However, it is rare that an application requires any level of customisation beyond the default.
I'm assuming this project is targeting rapid prototype/"entrepreneur" market because I can assure you that basically every project I've ever worked on at BigTechCorp needed some kind of customization beyond the defaults.
Re: Speeding up Azure development by not using Terraform
#3It's all fun and games until you want to do something even semi non-standard. Nitric even calls this out: > If you wanted to be able to completely customise your infrastructure, using IaC can be practical. However, it is rare that an application requires any level of customisation beyond the default. I'm assuming this project is targeting rapid prototype/"entrepreneur" market because I can assure you that basically e…
It's not a tool I have ever thought was great!
Re: Speeding up Azure development by not using Terraform
#4The only real alternative is to use PowerShell or AZ CLI instead.
Re: Speeding up Azure development by not using Terraform
#5Re: Speeding up Azure development by not using Terraform
#6So, it's fast because it uses Pulumi... Does Pulumi no longer build on Terraform providers? (EDIT: looking, it seems like many Pulumi providers are still terraform wrappers...)
Either way, it feels like this is just a Pulumi feature.
Re: Speeding up Azure development by not using Terraform
#7It's all fun and games until you want to do something even semi non-standard. Nitric even calls this out: > If you wanted to be able to completely customise your infrastructure, using IaC can be practical. However, it is rare that an application requires any level of customisation beyond the default. I'm assuming this project is targeting rapid prototype/"entrepreneur" market because I can assure you that basically e…
Certainly, but Terraform also sucks at this! I have had all sorts of problems with providers that basically lie to your face about the guarantees they make, state files always getting funky and needing escalation, special things needing to be put in special files or "terraform will get mad" (the actual staff sre's comments) It's not a tool I have ever thought was great!
Re: Speeding up Azure development by not using Terraform
#8Why do people do this? I skim the article. I go wait "Nitric sounds like Pulumi". A few googles later, I find this : https://nitric.io/docs/reference/pulumi So, it's fast because it uses Pulumi... Does Pulumi no longer build on Terraform providers? (EDIT: looking, it seems like many Pulumi providers are still terraform wrappers...) Either way, it feels like this is just a Pulumi feature.
Re: Speeding up Azure development by not using Terraform
#9Sure, by using their solution instead. The only real alternative is to use PowerShell or AZ CLI instead.
[1]: https://learn.microsoft.com/en-us/azure/azure-resource-manag...
Re: Speeding up Azure development by not using Terraform
#10Apart from the fact that C# examples seem to be lacking from the documentation at the moment, I’d also be interested to know if there is, or will be support for managed identities?
Edit. Just found the C# examples. Reading through now.
We are predominantly switching over to managed identities only to avoid key rotation hassles, and Entra workload federated identities in pipelines to remove those hardcoded identities in our pipelines.
I also wonder how you deal with combined function deployments. For example we deploy function apps or message consumers that process multiple message types as a bounded context, in one single app. I assume that Nitric would deploy each function endpoint as a separate app container?
Regardless of those niggles, I love the concept of combining the code and the infrastructure definitions together.