From b6b6e2f79c759e22b6e0834c7011ed6e6233e17e Mon Sep 17 00:00:00 2001 From: The Magician Date: Fri, 23 Apr 2021 15:54:58 -0700 Subject: [PATCH] Made deletion of all budget filter projects be recognized (#4731) (#692) * Enabled imports for billing budget * Made updates of filter projects get recognized during updates * Added state migration function Signed-off-by: Modular Magician --- google/billing_budget.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/billing_budget.go b/google/billing_budget.go index fdb462128..c862e73fc 100644 --- a/google/billing_budget.go +++ b/google/billing_budget.go @@ -17,7 +17,7 @@ package google import "reflect" func GetBillingBudgetCaiObject(d TerraformResourceData, config *Config) ([]Asset, error) { - name, err := assetName(d, config, "//billing.googleapis.com/{{name}}") + name, err := assetName(d, config, "//billing.googleapis.com/billingAccounts/{{billing_account}}/budgets/{{name}}") if err != nil { return []Asset{}, err }