5 min Create and configure an Azure Files mount on VM 2 with robocopy (update)

https://docs.microsoft.com/en-us/azure/storage/files/storage-files-quick-create-use-windows An Azure storage account and an Azure file shareA Windows Server 2019 Datacenter VM 1 Create a storage account (test-it3->testit3straccount)A general-purpose v2 storage account provides access to all of the Azure Storage services: blobs, files, queues, and tables.2 Create an Azure file share:2.1 When the Azure storage account deployment is complete, select Go to […]

5 min Azure vnet, vm and dynamic/static ip

Microsoft Azure by default has a dynamic assignment of a public IP address to a newly-created VM unless we change it to be static. Public IP enables communication to Azure VM from the internet. Assigning a static public IP address ensures that the address never changes as opposed to the dynamic public IP address. The dynamic […]

5 min data storage approach in Azure decision tree

Case: https://docs.microsoft.com/en-us/learn/modules/choose-storage-approach-in-azure/ Data classification:The key factors to consider in deciding on the optimal storage solution are: how to classify your data, how your data will be used, and how you can get the best performance for your application. Structured (SQL, RDBMS) Semi-structured (key/value, NOSQL, serialization language, XML,JSON, YAML) Unstructured (media, word, text, log) What are […]

Info Azure, Arm and Bash

https://github.com/spawnmarvel/azure-arm-bash https://docs.ansible.com/ Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates. https://www.ansible.com/overview/how-ansible-works Ansible is a radically simple IT automation engine that automates cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT needs. Designed for […]

ARM Lab 104 MS (Deployment and more)

https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/deployment-tutorial-local-template?tabs=azure-powershell Lets continue to more advanced or intermediate stuff! All the files are stored at folder ..\arm\med_deployment at github 1 Deploy a local ARM template […] deploys a storage account, app service plan, and web app Do, did done. Now clean it MS says, why this tutorial anyway, well repetition is always good.2 Deploy a […]

ARM Lab 103 MS (param+ template)

Lets continue from ARM Lab 102 https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/template-tutorial-create-first-template?tabs=azure-powershell With 8 Use quick start template Quick start templates is a repository of templates, here we will use a website resource definition and addit to the last template we used:Folder Quick Start-templates contains:azure deploy_exported.jsondeploy_exported.ps1The above template works for str.acc and app service plan, but we also want to […]

TODO ARM Actions MS (CI/CD)

CI/CD Workflow Deploy credentials Configure secret Add ARM Template Create workflow The workflow is trigger when there is a push event on the main branch, which modifies at least one of the two files specified. Workflow status https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/deploy-github-actions

Azure Services

If you need to view the hole list or check updates just type Free services in Azure Always free App Service COMPUTE, 10 Web, mobile or API apps for any platform or device Functions COMPUTE, 1 000 000 request per month Active Directory SECURITY + IDENTITY, 500 000 objects Active Directory B2C SECURITY + IDENTITY, […]

ARM Lab 102 MS

After following ARM Template 101 and AZ-104-MS Azure Administrator 101 quick ref We are ready for some labs, all labs has a template and a parameters file Remember also the quick starts https://azure.microsoft.com/en-us/resources/templates/ Any way we will start at 0, many of the parameters may change but we need to look at prices first, since […]

ARM Template 101 MS

https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/template-syntax Template Advantages Improves the consistency, the structure, format in the template is the same regardless of tool Help express deployments that are complex Reduces manual errors Are code, IAC, infrastructure as code, version and evolution over time Reuse and link-able, small templates and combine then Template Schema JSON, data stored as obj in text, […]