diff --git a/operational/flexera/onboarding/flexera_onboarding.pt b/operational/flexera/onboarding/flexera_onboarding.pt index edaa15af81..ef3afdb81e 100644 --- a/operational/flexera/onboarding/flexera_onboarding.pt +++ b/operational/flexera/onboarding/flexera_onboarding.pt @@ -601,6 +601,10 @@ script "js_result_fail_generally_recommended_templates", type: "javascript" do // For each vendor in the common policy list _.each(_.keys(ds_generally_recommended_templates_json), function(vendor) { var bill_connects = _.filter(ds_bill_connects, function (bill_connect) { + // If vendor == google, look for "gcp" instead + if (vendor == "google") { + vendor = "gcp" + } // Match if bill_connect.kind contains vendor string return bill_connect.kind.indexOf(vendor) > -1; });