Skip to content

Instantly share code, notes, and snippets.

$ TF_LOG=trace terraform apply
2020/01/22 09:05:05 [INFO] Terraform version: 0.12.19
2020/01/22 09:05:05 [INFO] Go runtime version: go1.12.13
2020/01/22 09:05:05 [INFO] CLI args: []string{"/home/<my_user>/local/bin/terraform_0.12.19", "apply"}
2020/01/22 09:05:05 [DEBUG] Attempting to open CLI config file: /home/<my_user>/.terraformrc
2020/01/22 09:05:05 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/01/22 09:05:05 [INFO] CLI command args: []string{"apply"}
2020/01/22 09:05:05 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config
2020/01/22 09:05:05 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory
2020/01/22 09:05:05 [DEBUG] New state was assigned lineage "23b24a57-5be0-4da2-af8d-7825efa01598"

Keybase proof

I hereby claim:

  • I am timello on github.
  • I am timello (https://keybase.io/timello) on keybase.
  • I have a public key ASCcnbtmh26xu5GQelEpef8dttKKOVbZZ8KQt76Y07EwTQo

To claim this, I am signing this object:

@timello
timello / zimbra_soap_set_password.py
Last active March 21, 2016 22:40
Zimbra SOAP set account password
import requests, sys, csv, os
import xml.etree.ElementTree as ET
get_token = (
'<?xml version="1.0" ?>'
'<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">'
'<soap:Header>'
' <context xmlns="urn:zimbra">'
' <format type="xml"/>'
' </context>'
/*
* created by Rui Santos, http://randomnerdtutorials.com
* Temperature Sensor Displayed on 4 Digit 7 segment common anode
* 2013
*/
const int digitPins[4] = {
4,5,6,7}; //4 common anode pins of the display
const int clockPin = 11; //74HC595 Pin 11
const int latchPin = 12; //74HC595 Pin 12
const int dataPin = 13; //74HC595 Pin 14