Tag azure

[Solved] Bot Cloning in Azure

So it is possible to solve this programatically. I went about it using Powershell scripts, specifically Azure CLI and Azure Powershell. However, I believe that the standard is via Terraform (aka TF) or Pulumi and if I had to do…

[Solved] use Azure Batch as Jenkins’ node

As your requirement is to send a command line to Azure so I would suggest you to have a simple Jenkins job (either freestyle job or pipeline job) which would accomplish the requirement. Pre-requisites: Have an Azure Batch account Have…

[Solved] Can not ping to Azure VM

The remote computer refused the network connection. According to the error, you need check whether your app is running firstly.Based on my experience, if Azure NSG or Firewall block the port 80, you should get error Request timed out. You…

[Solved] How to create an azure blob storage using Arm template?

Create an Azure Storage Account and Blob Container on Azure How to create a new storage account. { “name”: “[parameters(‘storageAccountName’)]”, “type”: “Microsoft.Storage/storageAccounts”, “apiVersion”: “2018-02-01”, “location”: “[resourceGroup().location]”, “kind”: “StorageV2”, “sku”: { “name”: “Standard_LRS”, “tier”: “Standard” }, “properties”: { “accessTier”: “Hot” }…

[Solved] Create Registration Notification Hub Azure PHP

# build uri $uri = $this->endpoint . $this->hubPath . “/registrations” . NotificationHub::API_NEW_VERSION; $ch = curl_init(); $token = $this->generateSasToken($uri); $headers = [ ‘Authorization: ‘. $token, ‘Content-Type: application/xml’, ‘x-ms-version: 2015-01’ ]; $request_body = self::requestBodyRegistration($device_type, $tagsOrTagExpression, $device_code ); if( is_null( $request_body ) )…

[Solved] Created Two DNS in two different Provider

What is the solution for me to point www.domain.com to my web app domain.azurewebsites.net and without affect mail.domain.com? We can add CNAME record to your web app service like this: Host type value www CNAME xxx.domain.azurewebsites.net how about if I…

[Solved] Deploy NodeJS app to Azure from VS Code

Local Git deployment from command line (or VS Code terminal): git remote add azure https://<username>@<app_name>.scm.azurewebsites.net/<app_name>.git git push azure master If empty application already there use force flag: git push azure master -f Useful links deploying Bot Framework To Azure On…