If you are unable to see your container in the list due to the limitation of displaying only the first 1000 containers, you may consider the following options:
- Use Azure CLI or PowerShell: Instead of using the Azure portal, you can use Azure CLI or PowerShell commands to set up SFTP and specify your container directly. This way, you can bypass the UI limitations. For example:
- In Azure CLI, you can use the command:
az storage container list --account-name <your-storage-account> - In PowerShell, you can use:
Get-AzStorageContainer -Context $context
- In Azure CLI, you can use the command:
- Check for Pagination: If you are using the Azure portal, check if there is a pagination option available to navigate through more containers beyond the first 1000.
- Container Naming: Ensure that your containers are named in a way that makes them easier to find. If possible, rename containers to be more descriptive or unique.
- Azure Support: If the issue persists and you cannot find a solution, consider reaching out to Azure support for assistance with your specific account setup.
These methods should help you select your desired container for the SFTP setup without being limited by the UI constraints.
References: