Skip to content

A module to manage Azure life-cycle activities, e.g. starting and stopping VMs

Notifications You must be signed in to change notification settings

MarkWarneke/Az.Compute.Lifecycle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Az.Compute.Lifecycle CI

Create a solution to save costs for dev environments e.g.

  • automatic shutdown of VMs & VMSS (#3) during evenings & weekends for dev/tests
  • automatic scaling of VMs & VMSS (#3) to reduce to smaller footprint and save costs

Create an executable that to certain times deallocate compute resources and start them again.

Use the run command to execute the functionality. To start the VMs run:

./run.ps1

to stop the vms run:

./run.ps1 -stop

You can also use the provided Makefile to execute life-cycle using Docker

make help

# Create docker container
make build

# Run life-cycle activities
make start.vm
make stop.vm

Automation

You can use an Azure logic app to start the Dockerfile as a Azure Container Instance. The Azure Container Instance can be associated with a User Assigned Managed Identity to take care of the authentication & authorization. Make sure the Managed Identity Principal has proper Role Based Access Controle on the Azure resources to be managed.

life cycle methods

Uses a couple of tags to start or stop vms. Use Set-Tags to create the tags on a given vm.

Name                 Value
            ===================  =====
            PowerOffDisabled     False
            PowerOffTime         20:00
            ManuallyStopped      False
            PowerOnTime          08:00
            PowerOnOffUTCOffset  0

After that the life cycle activities will Start-Vm or Stop-Vm based on the tags.

Help

$ModuleName = 'Az.Compute.LifeCycle'
Import-Module (Join-Path 'src' $ModuleName -Resolve) -Force

Get-Command -Module $ModuleName

Get-Help Set-Tags
Get-Help Start-Vm
Get-Help Stop-Vm

Docker

Using mcr.microsoft.com/azure-powershell:latest