You have an application named App1 that does not support Azure Active Directory (Azure AD) authentication.
You need to ensure that App1 can send messages to an Azure Service Bus queue. The solution must prevent Appl from listening to the queue.
What should you do?
There are two ways to authenticate and authorize access to Azure Service Bus resources: Azure Activity Directory (Azure AD) and Shared Access Signatures (SAS).
Each Service Bus namespace and each Service Bus entity has a Shared Access Authorization policy made up of rules.
https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-sas
An administrator plans to create a function app in Azure that will have the following settings:
Runtime stack: .NET Core
Operating System: Linux
Plan type: Consumption
Enable Application Insights: Yes
You need to ensure that you can back up the function app.
Which settings should you recommend changing before creating the function app?
D18912E1457D5D1DDCBD40AB3BF70D5D
The Backup and Restore feature requires the App Service plan to be in the Standard, Premium or Isolated tier.
https://docs.microsoft.com/en-us/azure/app-service/manage-backup#requirements-and-restrictions
You have an Azure web app that runs in a Premium App Service plan.
Developers plan to update the app weekly.
You need to ensure that the app can be switched from the current version to the new version. The solution must meet the following requirements:
* Provide the developers with the ability to test the app m Azure prior to switching versions Testing must use the same app instance
* Ensure that the app version can be rolled back.
* Minimize downtime.
what should you do?
Azure Functions deployment slots allow your function app to run different instances called 'slots'. Slots are different environments exposed via a publicly available endpoint. One app instance is always mapped to the production slot, and you can swap instances assigned to a slot on demand.
There are a number of advantages to using deployment slots. The following scenarios describe common uses for slots:
Different environments for different purposes: Using different slots gives you the opportunity to differentiate app instances before swapping to production or a staging slot.
Easy fallbacks: After a swap with production, the slot with a previously staged app now has the previous production app. If the changes swapped into the production slot aren't as you expect, you can immediately reverse the swap to get your 'last known good instance' back.
Prewarming
https://docs.microsoft.com/en-us/azure/azure-functions/functions-deployment-slots
You are developing an application that will enable users to download content from an Azure Storage account. The users must only be able to download the content for a period of seven days. You need to recommend an authentication solution to access the storage account. What should you include in the recommendation?
You plan to configure an Azure Cosmos DB account as shown in the following table.
You need to ensure the highest level of resiliency for CosmosDB1.
What should you use?
Multi-region writes protects against any regional outage.
https://docs.microsoft.com/en-us/azure/cosmos-db/high-availability
Currently there are no comments in this discussion, be the first to comment!