Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions catalog/gcp/google_sql_database_instance.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ attribute_filters = [
{ key = "description", const = "Cloud SQL for PostgreSQL: Zonal - Micro instance in Americas" },
]

[mappings.small]
service = "Cloud SQL"
product_family = "ApplicationServices"
attribute_filters = [
{ key = "description", const = "Cloud SQL for PostgreSQL: Zonal - Small instance in Americas" },
]

[mappings.storage]
service = "Cloud SQL"
product_family = "ApplicationServices"
Expand All @@ -69,6 +76,14 @@ when = 'default(default(settings_tier, tier), "db-f1-micro") == "db-f1-micro
quantity = "monthly_hours()"
rate = 'price("micro")'

[[dimensions]]
id = "compute_small"
label = "Database compute (g1-small)"
unit = "hours"
when = 'default(default(settings_tier, tier), "db-f1-micro") == "db-g1-small"'
quantity = "monthly_hours()"
rate = 'price("small")'

[[dimensions]]
id = "vcpu"
label = "Database vCPU"
Expand Down