From 7ac1fd3406aeb54f03036b64c7b02986d601021d Mon Sep 17 00:00:00 2001 From: Alec Fong Date: Thu, 4 Dec 2025 20:51:43 -0800 Subject: [PATCH] change name --- v1/providers/nebius/credential.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v1/providers/nebius/credential.go b/v1/providers/nebius/credential.go index 347d676..7d1055e 100644 --- a/v1/providers/nebius/credential.go +++ b/v1/providers/nebius/credential.go @@ -15,8 +15,8 @@ const defaultNebiusLocation = "eu-north1" // NebiusCredential implements the CloudCredential interface for Nebius AI Cloud type NebiusCredential struct { RefID string - ServiceAccountKey string `json:"sa_json"` // JSON service account key - TenantID string `json:"tenant_id"` // Nebius tenant ID (top-level organization) + ServiceAccountKey string `json:"service_account_key"` // JSON service account key + TenantID string `json:"tenant_id"` // Nebius tenant ID (top-level organization) } var _ v1.CloudCredential = &NebiusCredential{}