Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 2.28 KB

README.md

File metadata and controls

46 lines (27 loc) · 2.28 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

  • Updated Runtime function to v4 12/5/2022 to a supported runtime, PowerShell Function also needs 7.2 for supportability

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/softchoice-corp/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