"use strict"; (self["webpackChunk"] = self["webpackChunk"] || []).push([[15290],{ /***/ 15290: /*!********************************************************************************************!*\ !*** ./node_modules/_monaco-editor@0.30.0@monaco-editor/esm/vs/basic-languages/hcl/hcl.js ***! \********************************************************************************************/ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ conf: function() { return /* binding */ conf; }, /* harmony export */ language: function() { return /* binding */ language; } /* harmony export */ }); /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ var conf = { comments: { lineComment: '#', blockComment: ['/*', '*/'] }, brackets: [ ['{', '}'], ['[', ']'], ['(', ')'] ], autoClosingPairs: [ { open: '{', close: '}' }, { open: '[', close: ']' }, { open: '(', close: ')' }, { open: '"', close: '"', notIn: ['string'] } ], surroundingPairs: [ { open: '{', close: '}' }, { open: '[', close: ']' }, { open: '(', close: ')' }, { open: '"', close: '"' } ] }; var language = { defaultToken: '', tokenPostfix: '.hcl', keywords: [ 'var', 'local', 'path', 'for_each', 'any', 'string', 'number', 'bool', 'true', 'false', 'null', 'if ', 'else ', 'endif ', 'for ', 'in', 'endfor' ], operators: [ '=', '>=', '<=', '==', '!=', '+', '-', '*', '/', '%', '&&', '||', '!', '<', '>', '?', '...', ':' ], symbols: /[=>](?!@symbols)/, '@brackets'], [ /@symbols/, { cases: { '@operators': 'operator', '@default': '' } } ], // numbers [/\d*\d+[eE]([\-+]?\d+)?/, 'number.float'], [/\d*\.\d+([eE][\-+]?\d+)?/, 'number.float'], [/\d[\d']*/, 'number'], [/\d/, 'number'], [/[;,.]/, 'delimiter'], // strings [/"/, 'string', '@string'], [/'/, 'invalid'] ], heredoc: [ [ /<<[-]*\s*["]?([\w\-]+)["]?/, { token: 'string.heredoc.delimiter', next: '@heredocBody.$1' } ] ], heredocBody: [ [ /([\w\-]+)$/, { cases: { '$1==$S2': [ { token: 'string.heredoc.delimiter', next: '@popall' } ], '@default': 'string.heredoc' } } ], [/./, 'string.heredoc'] ], whitespace: [ [/[ \t\r\n]+/, ''], [/\/\*/, 'comment', '@comment'], [/\/\/.*$/, 'comment'], [/#.*$/, 'comment'] ], comment: [ [/[^\/*]+/, 'comment'], [/\*\//, 'comment', '@pop'], [/[\/*]/, 'comment'] ], string: [ [/\$\{/, { token: 'delimiter', next: '@stringExpression' }], [/[^\\"\$]+/, 'string'], [/@escapes/, 'string.escape'], [/\\./, 'string.escape.invalid'], [/"/, 'string', '@popall'] ], stringInsideExpression: [ [/[^\\"]+/, 'string'], [/@escapes/, 'string.escape'], [/\\./, 'string.escape.invalid'], [/"/, 'string', '@pop'] ], stringExpression: [ [/\}/, { token: 'delimiter', next: '@pop' }], [/"/, 'string', '@stringInsideExpression'], { include: '@terraform' } ] } }; /***/ }) }]);