Skip to content

Commit

Permalink
Add Sentinel to telemetry (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
glennsarti authored Nov 7, 2022
1 parent b17bbc0 commit 0faec24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ function detectProduct(doc: vscode.TextDocument) {
if (doc.fileName === 'waypoint.hcl') {
return 'waypoint';
}
if (doc.fileName === 'sentinel.hcl') {
return 'sentinel';
}
if (doc.fileName.endsWith('.pkr.hcl')) {
return 'packer';
}
Expand Down

0 comments on commit 0faec24

Please sign in to comment.