Complete the code to specify the GCP free tier monthly usage limit for Cloud Functions invocations.
free_tier_limit = [1] # Number of free invocations per month
The GCP free tier offers 2 million Cloud Functions invocations per month for free.
Complete the code to set the GCP free tier monthly storage limit for Cloud Storage in GB.
free_storage_gb = [1] # Free storage in GB per month
GCP free tier includes 5 GB-months of Cloud Storage per month for free.
Fix the error in the code to correctly apply the GCP free tier credit amount for new users.
free_tier_credit = [1] # Amount of free credit for new GCP users
New GCP users receive $300 in free credits valid for 90 days.
Fill both blanks to define the free tier limits for BigQuery storage and queries per month.
bigquery_free_tier = {'storage_gb': [1], 'queries_tb': [2]The GCP free tier includes 10 GB of BigQuery storage and 1 TB of queries per month.
Fill all three blanks to configure the free tier limits for Compute Engine: vCPU hours, RAM GB hours, and persistent disk GB.
compute_engine_free_tier = {'vCPU_hours': [1], 'ram_gb_hours': [2], 'disk_gb': [3]The free tier for Compute Engine includes 1 f1-micro instance per month with 30 GB RAM hours, 30 GB persistent disk, and 720 vCPU hours.