Skip to content

Instantly share code, notes, and snippets.

$ TF_LOG=trace terraform apply test
2019/08/08 11:01:59 [INFO] Terraform version: 0.12.4
2019/08/08 11:01:59 [INFO] Go runtime version: go1.12.4
2019/08/08 11:01:59 [INFO] CLI args: []string{"/home/user/bin/terraform", "apply", "test"}
2019/08/08 11:01:59 [DEBUG] Attempting to open CLI config file: /home/user/.terraformrc
2019/08/08 11:01:59 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2019/08/08 11:01:59 [INFO] CLI command args: []string{"apply", "test"}
zip: not a valid zip file
@javaJake
javaJake / gist:00cc8be7ca16c650477ed0132423dc0c
Created June 24, 2016 14:02
Vivaldi.1.2.490.39 failure output
Chocolatey is running on Windows v 6.1.7601.65536
Attempting to delete file "C:/ProgramData/chocolatey/choco.exe.old".
Attempting to delete file "C:\ProgramData\chocolatey\choco.exe.old".
Command line: "C:\ProgramData\chocolatey\choco.exe" install -debug -verbose vivaldi
Received arguments: install -debug -verbose vivaldi
RemovePendingPackagesTask is now ready and waiting for PreRunMessage.
Sending message 'PreRunMessage' out if there are subscribers...
[Pending] Removing all pending packages that should not be considered installed...
The source 'https://chocolatey.org/api/v2/' evaluated to a 'normal' source type
@javaJake
javaJake / bashrc
Last active November 21, 2020 18:54
Use the prompt to synchronize history between shells
shopt -s histappend
HISTTIMEFORMAT="%s "
ETERNAL_HISTORY_FILE="$HOME/.bash_eternal_history"
PROMPT_COMMAND="history -a; history -n; $PROMPT_COMMAND"
PROMPT_COMMAND='echo "$$" "$USER" "$(history 1)" >> "$(eval '"'"'echo $ETERNAL_HISTORY_FILE'"'"')"; '"${PROMPT_COMMAND}"