skip to Main Content

Using the Azure CAF Terraform Module: How to manage AZure Firewall Policies (or Classic Rules) using the module?

(for anyone who might be using the Hashicorp/Microsoft Azure CAF Module for enterprise infrastructure as code) Azure provides a terraform module for implementing enterprise landing zones using infrastructure-as-code/data-as-code paradigm: https://github.com/Azure/terraform-azurerm-caf-enterprise-scale However there is no indication or documentation on how to…

VIEW QUESTION

Azure Pipelines fails to resolve dependency even through artifact is available in Azure Feed

My Azure Pipeline build fails with the following errror: Failed to collect dependencies at org.apache.commons:commons-lang3:jar:3.8.1: Failed to read artifact descriptor for org.apache.commons:commons-lang3:jar:3.8.1: Could not transfer artifact org.apache.commons:commons-lang3:pom:3.8.1 from/to SDC_MvnRepo (https://pkgs.dev.azure.com/XXX/XXX/_packaging/SDC_MvnRepo/maven/v1): Transfer failed for https://pkgs.dev.azure.com/XXX/XXX/_packaging/SDC_MvnRepo/maven/v1/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom: Connection reset -> [Help 1] However…

VIEW QUESTION

Why I am not seeing all properties available in local.settings.json file after deploying Azure function

I created an Azure function using Visual Studio. Local.setting.json file had following properties: { "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "UseDevelopmentStorage=true", "FUNCTIONS_WORKER_RUNTIME": "dotnet", "ServiceBusConnString": "Endpoint=sb://sb-new-two.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=9FygKPHH2eJVp3GmAiUxtT7sGnddsaddadNIrciM0=", "Test": "sb-new-two.servicebus.windows.net" } } This is how my function looks: [FunctionName("Function1")] public void Run([ServiceBusTrigger("topic-one", "sub-one", Connection…

VIEW QUESTION
Back To Top
Search