Skip to content

Instantly share code, notes, and snippets.

@whathelll
whathelll / gist:9b97fefda12ec2e428617bf52bdc6458
Created February 9, 2023 21:39
tf_debug_output of vault provider
2023-02-09T22:58:39.514+1100 [DEBUG] Building and walking validate graph
2023-02-09T22:58:39.514+1100 [DEBUG] ProviderTransformer: "data.vault_generic_secret.token" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/vault"]
2023-02-09T22:58:39.515+1100 [DEBUG] created provider logger: level=debug
2023-02-09T22:58:39.515+1100 [INFO] provider: configuring client automatic mTLS
2023-02-09T22:58:39.536+1100 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/vault/3.12.0/linux_amd64/terraform-provider-vault_v3.12.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/vault/3.12.0/linux_amd64/terraform-provider-vault_v3.12.0_x5]
2023-02-09T22:58:39.537+1100 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/vault/3.12.0/linux_amd64/terraform-provider-vault_v3.12.0_x5 pid=20347
2023-02-09T22:58:39.537+1100 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terrafor
@whathelll
whathelll / cntlm_npm.md
Created July 24, 2018 03:10 — forked from triskell/cntlm_npm.md
[Windows 7] CNTLM and NPM behind NTLM proxy

CNTLM and NPM behind NTLM proxy on Windows 7

CNTLM

  • Install CNTLM in a folder where you have full rights to run it as administrator.

  • Open cntlm.ini and fill it :

Username    YOUR_USERNAME
Domain YOUR_DOMAIN
@whathelll
whathelll / watch.sh
Last active May 7, 2016 01:24 — forked from mikesmullin/watch.sh
watch is a linux bash script to monitor file modification recursively and execute bash commands as changes occur
#!/usr/bin/env bash
# script: watch
# author: Mike Smullin <mike@smullindesign.com>
# license: GPLv3
# description:
# watches the given path for changes
# and executes a given command when changes occur
# usage:
# watch <path> <cmd...>
#