Hi there, been exploring the pricing API, GCP seem...
# help
l
Hi there, been exploring the pricing API, GCP seems to be missing some prices, this query results in no pricing options for any c4-standard instance types
Copy code
query {
  products(
    filter: {
      vendorName: "gcp"
      service:"Compute Engine"
      attributeFilters:[{
        key:"machineType"
        value_regex: "/c4-standard.*/g"
      }]
    }
  ) {
    productFamily
    prices {
      USD
      purchaseOption
    }
    attributes {
      key
      value
    }
  }
}
The entire C4 family is missing pricing data 😞
w
@loud-spring-42792 can you possibly try testing that by creating a Terraform resource with a c4 instance type to see what the CLI outputs with
--log-level=debug
, I wonder if the filters used by the CLI are different to the above
l
Sorry i've only used the graphql api and don't have the CLI setup at all or even intend to use it. Only wanted pricing data 😓