@firestartr/cli 1.27.0 → 1.28.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -55236,11 +55236,13 @@ const FirestartrFinalizer = 'firestartr.dev/finalizer';
|
|
|
55236
55236
|
const FirestartrLabelOldName = 'firestartr.dev/old-name';
|
|
55237
55237
|
const FirestartrApiGroup = 'firestartr.dev';
|
|
55238
55238
|
const KubernetesApiGroup = 'core';
|
|
55239
|
+
const ExternalSecretsApiGroup = 'external-secrets.io';
|
|
55239
55240
|
exports["default"] = {
|
|
55240
55241
|
FirestartrFinalizer,
|
|
55241
55242
|
FirestartrLabelOldName,
|
|
55242
55243
|
FirestartrApiGroup,
|
|
55243
55244
|
KubernetesApiGroup,
|
|
55245
|
+
ExternalSecretsApiGroup,
|
|
55244
55246
|
};
|
|
55245
55247
|
|
|
55246
55248
|
|
|
@@ -55422,9 +55424,11 @@ exports["default"] = {
|
|
|
55422
55424
|
"use strict";
|
|
55423
55425
|
|
|
55424
55426
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
55425
|
-
exports.TFWorkspaceRefCR = exports.GroupRefRegex = exports.TFWorkspaceRefRegex = void 0;
|
|
55427
|
+
exports.TFWorkspaceRefCR = exports.GroupRefRegex = exports.SecretRefRegex = exports.TFWorkspaceRefRegex = void 0;
|
|
55426
55428
|
const regModuleName = /[\w\-.]+/;
|
|
55427
55429
|
exports.TFWorkspaceRefRegex = new RegExp(`\\$\\{\\{\\s*tfworkspace\\:(${regModuleName.source})\\:outputs\\.(${regModuleName.source})\\s*\\}\\}`, 'ig');
|
|
55430
|
+
// example of secret ref: ${{secret:my-secret.password}}
|
|
55431
|
+
exports.SecretRefRegex = new RegExp(`\\$\\{\\{\\s*secret\\:(${regModuleName.source})\\.(${regModuleName.source})\\s*\\}\\}`, 'ig');
|
|
55428
55432
|
exports.GroupRefRegex = new RegExp(`group\\:(${regModuleName.source})`, 'ig');
|
|
55429
55433
|
exports.TFWorkspaceRefCR = new RegExp(`\\$\\{\\{\\s*references\\.(${regModuleName.source})\\s*\\}\\}`, 'i');
|
|
55430
55434
|
|