From b6d7bf1af2062e557b3fb2c883879554e10d7702 Mon Sep 17 00:00:00 2001 From: Tom Downes Date: Wed, 13 Oct 2021 16:17:46 -0500 Subject: [PATCH] fix: billing_budget resource should use GA provider (#626) Co-authored-by: Morgante Pell --- modules/budget/main.tf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/budget/main.tf b/modules/budget/main.tf index d13853c5..91351f6b 100644 --- a/modules/budget/main.tf +++ b/modules/budget/main.tf @@ -36,8 +36,7 @@ data "google_project" "project" { } resource "google_billing_budget" "budget" { - provider = google-beta - count = var.create_budget ? 1 : 0 + count = var.create_budget ? 1 : 0 billing_account = var.billing_account display_name = local.display_name