mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
chore: track terraform modules in telemetry (#15450)
Addresses https://github.com/coder/nexus/issues/35. This PR: - Adds a `workspace_modules` table to track modules used by the Terraform provisioner in provisioner jobs. - Adds a `module_path` column to the `workspace_resources` table, allowing to identify which module a resource originates from. - Starts pushing this new information into telemetry. For the person reviewing this PR, do not fret about the 1,500 new lines - ~1,000 of them are auto-generated.
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
DROP TABLE workspace_modules;
|
||||
|
||||
ALTER TABLE
|
||||
workspace_resources
|
||||
DROP COLUMN module_path;
|
Reference in New Issue
Block a user