From d5e0c2b8bb74f0310ab80ccda1a7aedad4bf32b9 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 1 Aug 2025 10:58:36 +0200 Subject: [PATCH] fix(vpc): set enable_custom_routes_propagation to computed instead of default true --- internal/services/vpc/vpc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/vpc/vpc.go b/internal/services/vpc/vpc.go index d8c7a2833a..d14d728937 100644 --- a/internal/services/vpc/vpc.go +++ b/internal/services/vpc/vpc.go @@ -48,7 +48,7 @@ func ResourceVPC() *schema.Resource { "enable_custom_routes_propagation": { Type: schema.TypeBool, Optional: true, - Default: true, + Computed: true, Description: "Defines whether the VPC advertises custom routes between its Private Networks", }, "project_id": account.ProjectIDSchema(),