Clase06.mp4: 56m
Materiales
# === Variables (change Location if you prefer) ===
$FunctionApp = "securefunc17021982"
$ResourceGroup = "ConfidentialStack"
$Location = "eastus"
$Runtime = "dotnet"
$FunctionsVersion = "4"
$StorageAccount = "securestor17021982"
# === 1) Login (interactive) ===
az login
# === 2) Create the Function App (consumption plan) ===
az functionapp create `
--name $FunctionApp `
--storage-account $StorageAccount `
--resource-group $ResourceGroup `
--consumption-plan-location $Location `
--runtime $Runtime `
--functions-version $FunctionsVersion `
--os-type Linux
No comments:
Post a Comment