From 8f1617fdba96c9ea5d477067cd0eb4067c29cb29 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Wed, 29 Oct 2025 15:54:44 -0400 Subject: [PATCH] Fix JSON tag for ServiceProviderConfig type field Signed-off-by: Mathieu Benoit --- types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/types.go b/types/types.go index d3f4d457..b73d9340 100644 --- a/types/types.go +++ b/types/types.go @@ -145,7 +145,7 @@ type ServiceConfig struct { } type ServiceProviderConfig struct { - Type string `yaml:"type,omitempty" json:"driver,omitempty"` + Type string `yaml:"type,omitempty" json:"type,omitempty"` Options MultiOptions `yaml:"options,omitempty" json:"options,omitempty"` Extensions Extensions `yaml:"#extensions,inline,omitempty" json:"-"` }