Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"az functionapp create" failing to create App Service Plan in select regions #28944

Open
brettnagy opened this issue May 12, 2024 · 3 comments
Open
Labels
Auto-Assign Auto assign by bot customer-reported Issues that are reported by GitHub users external to the Azure organization. Functions az functionapp question The issue doesn't require a change to the product in order to be resolved. Most issues start as that Service Attention This issue is responsible by Azure service team.

Comments

@brettnagy
Copy link

Describe the bug

Using the Azure CLI to create a new consumption plan function in South Central US fails to create the associated app service plan, but the function is created successfully. Using the Azure Portal to create the function in SCUS (point and click, not cloud shell) works as expected and creates the Y1 plan.

Using the Azure CLI and South Central US location, after creating the consumption plan function, an app service plan name is shown:

image

Clicking on the app service plan name produces the following 404 error:

image

Using "az functionapp show" against the newly created function throws an error:

image

Using the Azure CLI and East US location, the function and its app service plan are created successfully and the app service plan can be viewed in the portal.

image

Related command

Repro Steps

$someRandom = "PUT SOMETHING SHORT & RANDOM IN HERE"
$location = "southcentralus"
$resourceGroupName = "FunctionResourceGroup"
$storageName = "funcstorage$someRandom"
$functionAppName = "funcapp$someRandom"

az group create --name $resourceGroupName --location $location
az storage account create --name $storageName --location $location --resource-group $resourceGroupName --sku Standard_LRS
az functionapp create --name $functionAppName --storage-account $storageName --consumption-plan-location $location --resource-group $resourceGroupName --functions-version 4

-- this following line will fail in SCUS
az functionapp show --name $functionAppName --resource-group $resourceGroupName

image

Errors

Clicking on the app service plan name produces the following 404 error:

image

Using "az functionapp show" against the newly created function throws an error:

image

Issue script & Debug output

Can provide on request. It's big and did not show any errors.

Expected behavior

"az functionapp create", when using the --consumption-plan-location argument, should create a Y1 app service plan that can be viewed in the portal. The "az functionapp show" command should be able to retrieve details of the function.

Environment Summary

image

Same incorrect behavior seen when using the Azure Portal Cloud Shell & PowerShell.

Additional context

No response

@brettnagy brettnagy added the bug This issue requires a change to an existing behavior in the product in order to be resolved. label May 12, 2024
@yonzhan
Copy link
Collaborator

yonzhan commented May 12, 2024

Thank you for opening this issue, we will look into it.

@microsoft-github-policy-service microsoft-github-policy-service bot added customer-reported Issues that are reported by GitHub users external to the Azure organization. Storage az storage labels May 12, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot added Auto-Assign Auto assign by bot Azure CLI Team The command of the issue is owned by Azure CLI team question The issue doesn't require a change to the product in order to be resolved. Most issues start as that ARM az resource/group/lock/tag/deployment/policy/managementapp/account management-group labels May 12, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot added Functions az functionapp Service Attention This issue is responsible by Azure service team. labels May 12, 2024
@yonzhan yonzhan removed bug This issue requires a change to an existing behavior in the product in order to be resolved. ARM az resource/group/lock/tag/deployment/policy/managementapp/account management-group Azure CLI Team The command of the issue is owned by Azure CLI team Storage az storage labels May 12, 2024
@pavlo-stoyanovskyy
Copy link

Hi there,

I am experiencing a very similar issue. For some reason, the az functionapp commands in Azure DevOps release pipelines have stopped working for all my existing Azure Function Apps and are now throwing the error "ERROR: (ResourceNotFound) The Resource 'Microsoft.Web/serverFarms/SouthCentralUSPlan'".

If I go to Azure Function App -> Automation -> Export template, I don't see any parameters being referenced to "/providers/Microsoft.Web/serverfarms/SouthCentralUSPlan" as shown in the picture below -

image

Does anyone know how to solve that issue?

Thank you for any advice that would help fix the issue!

@brettnagy
Copy link
Author

@yonzhan - any way to get someone to take a quick look at this? It's definitely a bug. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Auto-Assign Auto assign by bot customer-reported Issues that are reported by GitHub users external to the Azure organization. Functions az functionapp question The issue doesn't require a change to the product in order to be resolved. Most issues start as that Service Attention This issue is responsible by Azure service team.
Projects
None yet
Development

No branches or pull requests

10 participants