RDS supported engines
📖 Scenario: You are setting up a cloud database service using Amazon RDS. Amazon RDS supports several database engines. You want to create a list of these supported engines and then filter them based on your project needs.
🎯 Goal: Create a list of supported RDS engines, add a filter configuration, select only the engines that are open source, and finally prepare the list for deployment.
📋 What You'll Learn
Create a list variable named
rds_engines with exact engine names and their open source status.Add a configuration variable named
open_source_only set to True.Use a list comprehension to create a new list named
filtered_engines containing only open source engines from rds_engines.Add a final variable named
deployment_engines that holds the filtered_engines list.💡 Why This Matters
🌍 Real World
Cloud architects often need to select database engines supported by cloud services like Amazon RDS. Filtering engines by license type helps in compliance and cost planning.
💼 Career
Understanding how to manage and filter cloud infrastructure options is essential for cloud engineers and architects when designing scalable and compliant systems.
Progress0 / 4 steps