Skip to content

Microsoft Azure

  1. Azure
  2. Microsoft REST API Guidelines
  3. New Features
  4. Blogs
  5. Azure Training and Certifications
  6. Azure Naming Convention
  7. Mission-critical Architecture on Azure
  8. Understand Azure Load Balancing
  9. Azure Load Testing
  10. Microsoft Linux Distribution CBL Mariner
  11. Azure Patterns
  12. ARM Templates
  13. Azure DevOps
    1. YAML Schema in DevOps Azure Pipelines
    2. Azure Pipeline Tasks
    3. Azure DevOps Snippets
  14. Azure AD and RBAC. Azure Tenant and Azure Subscription. Service Principal SPN
    1. Register applications in Azure AD. Authenticate apps and services
    2. Azure AD Pen Testing
  15. Azure Arc. Azureโ€™s Hybrid And Multi-Cloud Platform. GitOps with Azure Arc
  16. Secure DevOps Kit for Azure
  17. Azure App Service
  18. Azure Application Gateway
  19. Azure Functions
  20. Azure Monitor managed service for Prometheus
  21. Mobile Apps
  22. Powershell
    1. Microsoft Graph PowerShell SDK
    2. Powershell repos
    3. Crescendo powershell module
    4. Secrets Management with Powershell
    5. Azure Resource Inventory
  23. Azure CLI. AZ CLI
  24. Azure Run Command
  25. IaC with PowerShell DSC Desired State Configuration
  26. Azure Bicep
  27. Azure Cross region Load Balancer
  28. Azure Traffic Manager
  29. Azure DNS
  30. Azure OpenVPN
  31. Azure Security
  32. Data Ingestion. Azure Data Factory
  33. WinGet Windows Package Manager CLI
  34. Windows 11
  35. Azure API Management
  36. Azure Container Apps
  37. Azure Container Instances
  38. Windows Server Container Host
  39. Disaster Recovery
  40. Azure Samples (Boilerplates)
  41. Azure Healthcare Data Services
  42. Office 365
  43. Azure Books
  44. Azure OpenAI
  45. Images
  46. Videos
  47. Tweets

Azure

Microsoft REST API Guidelines

New Features

Blogs

Azure Training and Certifications

Azure Naming Convention

Mission-critical Architecture on Azure

Understand Azure Load Balancing

Azure Load Testing

Microsoft Linux Distribution CBL Mariner

Azure Patterns

ARM Templates

Azure DevOps

YAML Schema in DevOps Azure Pipelines

Azure Pipeline Tasks

  • Microsoft/azure-pipelines-tasks This repo contains the tasks that are provided out-of-the-box with Azure Pipelines and Team Foundation Server. This provides open examples on how we write tasks which will help you write other tasks which can be uploaded to your account or server.

Azure DevOps Snippets

  • gist.github.com: This snippet contains the steps to generate a terraform plan and post it as a comment of a pull request in Azure DevOps

    - script: |
        terraform plan -out tf.tfplan
    displayName: Generate Terraform plan
    
    - script: |
        terraform show -no-color tf.tfplan > $(Agent.TempDirectory)/tf.txt
    displayName: Convert Terraform plan to text
    
    - bash: |
        cd $(Agent.TempDirectory)
        ENCODED_URL=$(echo "$(System.CollectionUri)$(System.TeamProject)/_apis/git/repositories/${{ variables.SourceRepositoryName }}/pullRequests/$(System.PullRequest.PullRequestId)/threads?api-version=7.0" | sed 's/ /%20/g')
        jq --rawfile comment tf.txt '.comments[0].content=$comment' <<< '{"comments": [{"parentCommentId": 0,"content": "","commentType": 1}],"status": 1}' |
        curl --request POST "$ENCODED_URL" \
        --header "Content-Type: application/json" \
        --header "Accept: application/json" \
        --header "Authorization: Bearer $SYSTEM_ACCESSTOKEN" \
        --data @- \
        --verbose
    env:
        SYSTEM_ACCESSTOKEN: $(System.AccessToken)
    displayName: 'Post comment with Terraform Plan'
    

Azure AD and RBAC. Azure Tenant and Azure Subscription. Service Principal SPN

Register applications in Azure AD. Authenticate apps and services

Azure AD Pen Testing

Azure Arc. Azureโ€™s Hybrid And Multi-Cloud Platform. GitOps with Azure Arc

Secure DevOps Kit for Azure

Azure App Service

Azure Application Gateway

Azure Functions

Azure Monitor managed service for Prometheus

Mobile Apps

Powershell

Microsoft Graph PowerShell SDK

Powershell repos

Crescendo powershell module

Secrets Management with Powershell

Azure Resource Inventory

Azure CLI. AZ CLI

Azure Run Command

IaC with PowerShell DSC Desired State Configuration

Azure Bicep

Azure Cross region Load Balancer

Azure Traffic Manager

Azure DNS

  • learn.microsoft.com: What is Azure DNS Private Resolver? Azure DNS Private Resolver is a new service that enables you to query Azure DNS private zones from an on-premises environment and vice versa without deploying VM based DNS servers. Customers will no longer need to provision IaaS based solutions on their Virtual Networks to resolve names registered on Azure Private DNS Zones and will be able to do conditional forwarding of domains back to on-prem, multi-cloud and public DNS servers.

Azure OpenVPN

Azure Security

Data Ingestion. Azure Data Factory

  • medium.com/codex: 7 Best Practices for Data Ingestion
    • Data engineering is the practice of designing and building systems for collecting, storing, and analyzing data at scale.
    • Data Ingestion is defined as the process of absorbing data from a vast multitude of sources, and then transferring it to a target site where it can be analyzed and deposited.
    • A Data Engineer spends more than 50% of his time writing different pipelines that move data from one place to another. There are two basic frameworks to achieve the same:
      • ETL: Extract โ€” Transform โ€” Load
      • ELT: Extract โ€” Load โ€” Transform
    • However, in both the frameworks the common element is to be able to extract the data and load it into another destination. This is Data Ingestion.
    • On a broad categorization, there are mainly 3 types of Data Ingestion:
      • Batch-based Data Ingestion: Batch-based ingestion happens at a regularly scheduled time. The data is ingested in batches. This is important when a business needs to monitor daily reports, ex: sales reports for different stores. This is the most commonly used data ingestion use case.
      • Real-time/Streaming Data Ingestion:
        • The process of gathering and transmitting data from source systems in real-time solutions such as Change Data Capture (CDC) is known as Real-Time Data Ingestion.
        • CDC or Streaming Data captures any changes, new transactions, or rollback in real time and moves changed data to the destination, without impacting the database workload.
        • Real-Time Ingestion is critical in areas like power grid monitoring, operational analytics, stock market analytics, dynamic pricing in airlines, and recommendation engines.
      • Lambda-based Data Ingestion Architecture: Lambda architecture in Data ingestion tries to use the best practices of both batch and real-time ingestion.
        • Batch Layer: Computes the data based on the whole picture. This is more accurate however is slower to compute.
        • Speed Layer: Is used for real-time ingestion, the computed data might not be completely accurate, however, gives a real-time picture of the data.
        • Serving layer: The outputs from the batch layer in the form of batch views and those coming from the speed layer in the form of near real-time views get forwarded to the serving. This layer indexes the batch views so that they can be queried in low latency on an ad-hoc basis.
  • mssqltips.com: Choosing Between SQL Server Integration Services and Azure Data Factory

WinGet Windows Package Manager CLI

Windows 11

Azure API Management

Azure Container Apps

Azure Container Instances

Windows Server Container Host

Disaster Recovery

Azure Samples (Boilerplates)

Azure Healthcare Data Services

Office 365

Azure Books

Azure OpenAI

Images

Click to expand!

pizza model

Videos

Click to expand!

Tweets

Click to expand!