Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 2.1 KB

README.md

File metadata and controls

45 lines (26 loc) · 2.1 KB

AzureAutoTagger

Deploy to Azure

Azure AutoTagger is a lightweight, low-cost serverless solution that can easily be deployed to an Azure subscription. Once deployed Azure AutoTagger monitors for ResourceWriteSucess events within the subscription and triggers an Azure Function to automatically apply a LastModifiedTimestamp and LastModifiedBy tag.

autotagger

tagging

Deployment

Important: You must have Owner permissions on the subscription you intend to deploy this to. The template will create a managed identity and assign it to the Reader and Tag Contributor roles.

Use the Deploy to Azure button to easily deploy this solution in a subscription

Deploy to Azure

-- OR --

  1. Clone the GitHub repo locally
git clone https://github.com/acampb/AzureAutoTagger.git
  1. Initiate an ARM Template deployment with Azure PowerShell or Azure CLI

Azure PowerShell:

New-AzDeployment -Location "East US" -TemplateFile ".\azuredeploy.json" -resourceGroupName "rg-autotagger" -Verbose

Azure CLI:

az deployment create --location "West US" --template-file ".\azuredeploy.json" --parameters resourceGroupName=rg-autotagger