Skip to content

Instantly share code, notes, and snippets.

@PlagueHO
PlagueHO / Publish-AzureRMWebappProject.ps1
Last active August 6, 2020 19:37
Publish an Azure Web App using a Service Principal in PowerShell to an Azure RM App Service
[CmdletBinding()]
param (
[Parameter(Mandatory = $True)]
[pscredential]
$Credential,
[Parameter(Mandatory = $True)]
[System.String]
$TenantId,