Scripts to setup my labs in Microsoft Azure
This holds all my wrapper commands that help me to setup parts of the environments.
This holds environment variables with my personl settings. That's why it's part of .gitignore and you have to setup this file on your local system with this content:
$Env:MyAzureAccountId = '[email protected]'
$Env:MyAzureSubscription = 'The name of the subscription'
$Env:MyAzureDomainName = 'test.local' # First part in upper cases will be used as NetBiosName
$Env:MyAzureInitialAdmin = 'aSecretName' # Will be used when creating the virtual maschines
$Env:MyAzureInitialPassword = 'aSecretPassword' # Will be used when creating the virtual maschines and for the certificate
$Env:MyAzurePassword = 'aSimplerPassword' # Will be used when creating additional users
This Skript will setup my lab with Azure virtual maschines for the multi database environment based on docker.
It uses code from my repo PowerShell-for-DBAs.
This Skript will setup my lab with Azure virtual maschines to test SQL Server instances in a Windows Failover Cluster.
The code to setup the failover cluster will be published soon...