diff --git a/src/common.ts b/src/common.ts index 6e49e9c..b031634 100644 --- a/src/common.ts +++ b/src/common.ts @@ -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'; }