New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@jaxxstorm/pulumi-rke

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jaxxstorm/pulumi-rke - npm Package Compare versions

Comparing version 1.0.1 to 1.1.0-alpha.1587669586

5

config/vars.js

@@ -6,5 +6,6 @@ "use strict";

const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
let __config = new pulumi.Config("rke");
exports.debug = __config.getObject("debug");
exports.logFile = __config.get("logFile");
exports.debug = __config.getObject("debug") || (utilities.getEnvBoolean("RKE_DEBUG") || false);
exports.logFile = __config.get("logFile") || (utilities.getEnv("RKE_LOG_FILE") || "");
//# sourceMappingURL=vars.js.map

2

package.json
{
"name": "@jaxxstorm/pulumi-rke",
"version": "v1.0.1 ",
"version": "v1.1.0-alpha.1587669586+g1d4f3cf ",
"description": "A Pulumi package for creating and managing rke cloud resources.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -26,4 +26,4 @@ "use strict";

{
inputs["debug"] = pulumi.output(args ? args.debug : undefined).apply(JSON.stringify);
inputs["logFile"] = args ? args.logFile : undefined;
inputs["debug"] = pulumi.output((args ? args.debug : undefined) || (utilities.getEnvBoolean("RKE_DEBUG") || false)).apply(JSON.stringify);
inputs["logFile"] = (args ? args.logFile : undefined) || (utilities.getEnv("RKE_LOG_FILE") || "");
}

@@ -30,0 +30,0 @@ if (!opts) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc