From 284c2333d67bcb6b65a1c7720dd17c655d4ed9a6 Mon Sep 17 00:00:00 2001 From: Brandon Schow Date: Fri, 26 Apr 2024 13:23:52 -0700 Subject: [PATCH] changed primary key to non-computed --- internal/provider/connection_resource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/provider/connection_resource.go b/internal/provider/connection_resource.go index db4f4973a..054159684 100644 --- a/internal/provider/connection_resource.go +++ b/internal/provider/connection_resource.go @@ -98,7 +98,7 @@ func (r *ConnectionResource) Schema(ctx context.Context, req resource.SchemaRequ }, }, "primary_key": schema.ListAttribute{ - Computed: true, + Computed: false, PlanModifiers: []planmodifier.List{ speakeasy_listplanmodifier.SuppressDiff(speakeasy_listplanmodifier.ExplicitSuppress), },