Skip to content

Instantly share code, notes, and snippets.

2020/03/13 11:08:04 [INFO] Terraform version: 0.12.23
2020/03/13 11:08:04 [INFO] Go runtime version: go1.12.13
2020/03/13 11:08:04 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/1.0.2/versions/0.12.23/terraform", "plan"}
2020/03/13 11:08:04 [DEBUG] Attempting to open CLI config file: /Users/*masked*/.terraformrc
2020/03/13 11:08:04 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/03/13 11:08:04 [INFO] CLI command args: []string{"plan"}
2020/03/13 11:08:04 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config
2020/03/13 11:08:04 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory
2020/03/13 11:08:04 [DEBUG] New state was assigned lineage "4323f233-083c-2517-71c2-cf2bc0bbf7e7"
2020/03/13 11:08:04 [TRACE] Meta.Backend: using default local state only (no backend configuration, and no existing initialized backend)
@singh1469
singh1469 / README.md
Created April 6, 2020 10:12 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@singh1469
singh1469 / delete_all_object_versions.sh
Created December 21, 2020 12:59 — forked from weavenet/delete_all_object_versions.sh
Delete all versions of all files in s3 versioned bucket using AWS CLI and jq.
#!/bin/bash
bucket=$1
set -e
echo "Removing all versions from $bucket"
versions=`aws s3api list-object-versions --bucket $bucket |jq '.Versions'`
markers=`aws s3api list-object-versions --bucket $bucket |jq '.DeleteMarkers'`
@singh1469
singh1469 / pyodbc-unixODBC-lambda-layer
Last active June 10, 2021 11:13 — forked from diriver63/pyodbc-unixODBC-lambda-layer
pyodbc and unixODBC for MSSQL as a lambda layer
# use https://github.com/lambci/docker-lambda to simulate a lambda environment
docker run -it --rm --entrypoint bash -e ODBCINI=/opt/odbc.ini -e ODBCSYSINI=/opt/ lambci/lambda:build-python3.7
# download and install unixODBC
# http://www.unixodbc.org/download.html
curl ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.7.tar.gz -O
tar xzvf unixODBC-2.3.7.tar.gz
cd unixODBC-2.3.7
./configure --sysconfdir=/opt --disable-gui --disable-drivers --enable-iconv --with-iconv-char-enc=UTF8 --with-iconv-ucode-enc=UTF16LE --prefix=/opt