Template to deploy the Data Management Zone of the Enterprise Scale Analytics architecture. The Data Management Zone provides data governance and management capabilities for the data platform of an organization.
Template to deploy a single Data Landing Zone of the Enterprise Scale Analytics architecture. The Data Landing Zone is a logical construct and a unit of scale in the Enterprise-Scale Analytics architecture that enables data retention and execution of data workloads for generating insights and value with data.
The Space Game website is a .NET 5 web app written in C# that's deployed to ☁️ Azure Web App for Containers and Azure SQL ☁️. The infrastructure is deployed using Azure Bicep 💪, and the application is tested using Selenium for functional tests and JMeter for load tests.
Bicep and Terraform code examples for policy-as-code workflows. Policies, PolicySets, Assignments using custom and built-in Policies for Azure Governance -- by @jesseloudon
Template to deploy a Data Product for analytics and data science use-cases into a Data Landing Zone of the Enterprise Scale Analytics architecture. The Data Product template can be used by cross-functional teams to create insights and products for external users.
Template to deploy a Data Product for Batch data processing into a Data Landing Zone of the Enterprise Scale Analytics architecture. The Data Product template can be used by cross-functional teams to ingest, provide and create new data assets within the platform.
Template to deploy a Data Product for data stream processing into a Data Landing Zone of the Enterprise Scale Analytics architecture. The Data Product template can be used by cross-functional teams to ingest, provide and create new data assets within the platform.
At the moment, the decompiler will convert
not(equals(a, b))in an ARM expression to:(!(a == b)). We should instead simplify further to(a != b)