Complete the code to identify the pillar that focuses on system uptime and availability.
pillar = "[1]" # This pillar ensures your system stays up and running
The Reliability pillar focuses on system uptime and availability, ensuring your services work as expected.
Complete the code to select the pillar that helps protect data and systems.
pillar = "[1]" # This pillar focuses on protecting your cloud resources
The Security pillar is about protecting your data, systems, and assets in the cloud.
Fix the error in the code to correctly assign the pillar that optimizes cloud spending.
pillar = "[1]" # This pillar helps manage and reduce costs
Cost Optimization pillar focuses on managing cloud spending efficiently.
Fill both blanks to complete the code that defines the two pillars related to system operation and speed.
pillars = ["[1]", "[2]"] # These pillars focus on running and speeding up your system
Operational Excellence focuses on running systems well, and Performance Efficiency focuses on speed and resource use.
Fill all three blanks to create a dictionary mapping pillars to their focus areas.
pillar_focus = {
"[1]": "Protect data and systems",
"[2]": "Keep systems running",
"[3]": "Manage cloud costs"
}This dictionary maps Security to protection, Reliability to system uptime, and Cost Optimization to managing costs.