Cloud Transition, Azure Adoption and Azure Foundation

The Adoption of a cloud platform in an organization requires identifying and mastering the strategic, organizational and technical challenges.

The Adoption of Azure Cloud Plattform can be divided into two steps. The first one is to build up the Azure Foundation and the second one is to build up new Solutions with Azure Services.

The Azure Foundation consists of three pillars that support the entire Azure Cloud platform of customers, including Azure Governance, Azure Core Infrastructure and Azure Operations.

The first pillar “Azure Governance” includes resource Organization, resource Security, auditing and cost Controls.

The second pillar “Azure Core Infrastruktur” includes identity & access management, connectivity, Azure network, Security Management and System Management.

The third pillar “Azure Operations” includes Cloud Service Management and infrastructure Automation.

These three pillars build the Foundation for customers Azure Environment and are ready to carry the new Azure Solutions

As an Azure Solution, a modern environment can be designed and implemented according to business or IT requirements in Azure or Hybrid with OnPremises. e.g. the extension of the OnPrem Datacenter in Azure, compute workloads with VM’s or system/service/application deployment using IaaS as well as PaaS components. The Azure Solutions are offered as Managed Services according to business requests or partly also by the internal IT organization for the business.

 

Vorbereitung auf Microsoft Exam AZ-302 – Azure Solutions Architecture Expert

Ich bereite mich mit den folgenden Lernmaterial für diesen Prüfung vor und möchte denen die das auch geplant haben meine gesammelten Informationen zu Verfügung stellen. Ich wünsche allen viel Erfolg und hoffe das meine Inputs etwas dazu beitragen kann.

 

Prüfungsinhalt:

Determine Workload Requirements (15-20%)

Design for Identity and Security (5-10%)

Design a Business Continuity Strategy (15-20%)

Implement Workload and Security (5-10%)

Implement Authentication and Secure Data (5-10%)

Develop for the Cloud (50%)

Link Sammlung:

eLearning

https://www.udemy.com/az302-azure/

https://app.pluralsight.com/channels/details/acdf22f8-4ab6-4ec9-bbe4-acca6e48bc31

Microsoft Learn Portal

https://docs.microsoft.com/de-de/learn/

Microsoft Hands-on Lab

https://www.microsoft.com/handsonlabs

Azure Doc

https://docs.microsoft.com/de-de/azure/

Dokumente

https://www.microsoft.com/en-ca/learning/certification-exams.aspx?types=true

https://www.microsoft.com/en-ca/learning/online-proctored-exams.aspx

Allgemein

https://www.microsoft.com/en-us/learning/azure-solutions-architect.aspx#skillsandknowledge

https://www.microsoft.com/en-us/learning/exam-AZ-302.aspx

 

Einführung von Azure Cloud Plattform in einer zentralen IT Organisation – Teil 2

Bevor die Einführung einer Cloud Plattform gestartet werden kann, sind einige strategische sowie auch organisatorische Überlegungen evtl. auch Anpassungen notwendig. Die Allgemeine Überlegungen bei einer Cloud Einführung werde ich in einer seperaten Blog Eintrag verfassen.

Die Einführung von Azure Cloud Plattform in einer Organisation beinhaltet verschiedene Schritte, mit dem Bild unten möchte ich gerne einer der möglichen Vorgehenweise bei der Einführung aufzeigen. Diese Vorgehensweise kann ebenfalls auch bei der Einführung von anderen Cloud Plattformen adaptiert werden (die Farbigen blöcke werden evtl. anders benannt).

Die Liste der einzelne Themen ist nicht abschliessend.

kurze Erklärung zum Bild:

  • Weise Blöcke – Konzeptionelle Vorgehensweise und Gruppierung der farbigen Blöcke.
  • Farbigen Blöcke – Organisatorische und Technische Komponenten die bei der Einführung beachtet bzw. implementiert werden können

 

Azure und Office365 über PowerShell

Installierte PowerShell Module auslesen:

Get-command -Module *Modulname*

Installation Powershell Gallery Module:

Install-Module -Name PowerShellGet -Force

Nützliche PowerShell Module für die Verwaltung von Azure und Office 365

Installation Azure Resource Manager Module:

Install-Module -Name AzureRM

Install-Module -Name AzureAD

Install-Module -Name MSOnline

Optional -Force

Installation überprüfen:

Get-Module -ListAvailable *Azure*

Anmeldung auf die Online Diensten

Azure Resource Manager:

Connect-AzureRmAccount

O365 Services:

$UserCredential = Get-Credential
Connect-MsolService -Credential $UserCredential

Azure AD:

$UserCredential = Get-Credential
Connect-azureAD -Credential $UserCredential

Nützliche PowerShell Befehle für die Verwaltung von Azure und Office 365

Office365 Benutzer Informationen einblenden lassen:

Get-MsolUser

Get-MsolUser -UnlicensedUsersOnly

Get-MsolUser | Where-Object {$_.UsageLocation -eq $Null}

Get-MsolUser -UserPrincipalName "upn@tenant.onmicosoft.com" | Select-Object *

Get-MsolUser | Where-Object {$_.City -eq "Zurich"}

Get-MolUser -UserPrincipalName <UPN of user account> | Select DisplayName,BlockCredential

Get-MsolUser | Select-Object DisplayName, Department, UsageLocation

Azure AD Benutzer Informationen einblenden lassen:

Get-AzureADUser

Get-AzureADUser | Where-Object {$_.UsageLocation -eq $Null}

Get-AzureADUser -ObjectID "upn@tenant.onmicosoft.com" | Select-Object * | More

Get-AzureADUser | Where-Object {$_.City -eq "Zurich"}

Azure CLI Befehle

Nach Ressourcen suchen:

az resource list -n uniqname

Nach Ressourcen in einer Ressourcegruppe suchen:

az resource list --resource-group RG1

Ressourcengruppe erstellen:

az group create --name NAME --location westeurope

Appservice Plan erstellen:

az appservice plan create --name NAME --resourcegroup RG Group -- sku SKU --is-linux

WebApp für Container erstellen:

az webapp create --resource-group RGGroup --plan APPPlan --name NAMEContainer --deployment-container-image-name microsoft/azure-appservices-go-quickstart