skip to Main Content

Cannot create an Azure Application gateway using Terraform

I'm trying to create an instance of Application Gateway. While doing so, I get the following error: Error: creating Application Gateway: (Name "name-gateway-wgrkecswbk" / Resource Group "name03n62mct"): network.ApplicationGatewaysClient#CreateOrUpdate: Failure sending request: StatusCode=400 -- Original Error: Code="InvalidResourceName" Message="Resource name is invalid.…

VIEW QUESTION

azure function to upload multiple files into blob storage

public static class FileUpload { [FunctionName("FileUpload")] public static async Task<IActionResult> Run( [HttpTrigger(AuthorizationLevel.Anonymous, "post", Route = null)] HttpRequest req, ILogger log) { string Connection = Environment.GetEnvironmentVariable("AzureWebJobsStorage"); string containerName = Environment.GetEnvironmentVariable("ContainerName"); Stream myBlob = new MemoryStream(); var file = req.Form.Files["File"]; myBlob =…

VIEW QUESTION

Azure devops pipeline variable for a task step name

Is there a variable available for an Azure devops pipeline task step name, highlighted below? pipeline image screenshot I've looked through the predefined variables at https://learn.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=classic but none of them work/are suitable.

VIEW QUESTION
Back To Top
Search