Skip to content

Instantly share code, notes, and snippets.

View aphistic's full-sized avatar
💜
Probably maybe doing things?

Kristin Davidson aphistic

💜
Probably maybe doing things?
View GitHub Profile
2021-08-11T17:50:32.138-0500 [DEBUG] Adding temp file log sink: /tmp/terraform-log358732098
2021-08-11T17:50:32.138-0500 [INFO] Terraform version: 1.0.4
2021-08-11T17:50:32.139-0500 [INFO] Go runtime version: go1.16.4
2021-08-11T17:50:32.139-0500 [INFO] CLI args: []string{"/usr/bin/terraform", "plan"}
2021-08-11T17:50:32.139-0500 [DEBUG] Attempting to open CLI config file: /home/aphistic/.terraformrc
2021-08-11T17:50:32.139-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2021-08-11T17:50:32.139-0500 [INFO] Loading CLI configuration from /home/aphistic/.terraform.d/credentials.tfrc.json
2021-08-11T17:50:32.139-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2021-08-11T17:50:32.139-0500 [DEBUG] ignoring non-existing provider search directory /home/aphistic/.terraform.d/plugins
2021-08-11T17:50:32.139-0500 [DEBUG] ignoring non-existing provider search directory /home/aphistic/.local/share/terraform/plugins
{
"protocols": {
"bgp": {
"64500": {
"neighbor": {
"192.168.1.1": {
"remote-as": 64501
},
"192.168.1.2": {
"remote-as": 64501
### Keybase proof
I hereby claim:
* I am aphistic on github.
* I am aphistic (https://keybase.io/aphistic) on keybase.
* I have a public key ASCADTUhxuYX3qhsfy8OX9qd9s9L03-o0FlTBsSHUCCfxgo
To claim this, I am signing this object:
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network.target docker.socket
Requires=docker.socket
[Service]
Type=notify
ExecStart=/usr/bin/docker daemon -H fd://
MountFlags=slave
@aphistic
aphistic / mrbtest.c
Created November 9, 2012 03:06
mruby playing
#include "mruby.h"
#include "mruby/proc.h"
#include "mruby/data.h"
#include "mruby/compile.h"
mrb_value class_func(mrb_state *mrb, mrb_value self)
{
// Ruby method params
char* strVal;
@aphistic
aphistic / mrbtest.c
Created November 9, 2012 02:34
Mruby via parser and mrb_run
#include "mruby.h"
#include "mruby/proc.h"
#include "mruby/data.h"
#include "mruby/compile.h"
int main(int argc, char** argv)
{
mrb_state *state = mrb_open();
mrbc_context *cxt = mrbc_context_new(state);