From 29a9379809c5c8baed7b94b699ef6181f67e54e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Tue, 26 Aug 2025 11:02:48 +0200 Subject: [PATCH] chore(billing): enable consistency errors --- internal/services/billing/consumption_data_source.go | 2 ++ internal/services/billing/invoices_data_source.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/internal/services/billing/consumption_data_source.go b/internal/services/billing/consumption_data_source.go index 0d6006acbe..02f4b534c4 100644 --- a/internal/services/billing/consumption_data_source.go +++ b/internal/services/billing/consumption_data_source.go @@ -69,6 +69,8 @@ func DataSourceConsumptions() *schema.Resource { Type: schema.TypeString, }, }, + EnableLegacyTypeSystemApplyErrors: true, + EnableLegacyTypeSystemPlanErrors: true, } } diff --git a/internal/services/billing/invoices_data_source.go b/internal/services/billing/invoices_data_source.go index 78c168d746..568c127bc7 100644 --- a/internal/services/billing/invoices_data_source.go +++ b/internal/services/billing/invoices_data_source.go @@ -124,6 +124,8 @@ func DataSourceInvoices() *schema.Resource { }, "organization_id": account.OrganizationIDSchema(), }, + EnableLegacyTypeSystemApplyErrors: true, + EnableLegacyTypeSystemPlanErrors: true, } }