From d9111fbadf91d426c41f824dd812963407e624e7 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Fri, 27 Dec 2024 15:19:18 +0530 Subject: [PATCH] Add template field to bundle section --- bundle/config/bundle.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bundle/config/bundle.go b/bundle/config/bundle.go index af9e1f4b..aa1d2c5c 100644 --- a/bundle/config/bundle.go +++ b/bundle/config/bundle.go @@ -53,4 +53,8 @@ type Bundle struct { // A stable generated UUID for the bundle. This is normally serialized by // Databricks first party template when a user runs bundle init. Uuid string `json:"uuid,omitempty"` + + // The template used to generate this bundle. This allows us to attribute bundle + // deploy revenue to a template. + Template string `json:"template,omitempty"` }