AKS vs App Service vs Functions Decision Guide
📖 Scenario: You are working as a cloud architect for a company that wants to deploy a new web application. The company is unsure whether to use Azure Kubernetes Service (AKS), Azure App Service, or Azure Functions. Your task is to help them understand the differences and decide which service fits their needs best.
🎯 Goal: Build a simple decision helper in Python that stores key characteristics of AKS, App Service, and Functions, then helps decide which service to use based on application needs.
📋 What You'll Learn
Create a dictionary with exact keys 'AKS', 'App Service', and 'Functions' and their descriptions
Add a configuration variable called
app_type with the value 'web', 'api', or 'event-driven'Write a function called
choose_service that returns the best service based on app_typeAdd a final line that calls
choose_service with app_type and stores the result in selected_service💡 Why This Matters
🌍 Real World
Helps beginners understand when to use AKS, App Service, or Functions in Azure for different app needs.
💼 Career
Cloud architects and developers often decide which Azure compute service to use based on app requirements.
Progress0 / 4 steps