Skip to content

Instantly share code, notes, and snippets.

View jarededwards's full-sized avatar

Jared Edwards jarededwards

View GitHub Profile
# civo isntance setup
# run terraform to create the new civo vm
# 1. export CIVO_TOKEN=$your-civo-token (allows access to the civo terraform provider)
# 2. terraform init
# 3. terraform plan
# NOTE: the following command assumes you were satisfied with the plan in the previous step
# 4. terraform apply -auto-approve
# run the `kubefirst` cli
@jarededwards
jarededwards / civo-kubernetes.tf
Created November 23, 2022 16:01
terraform hcl for provisioning civo cloud
terraform {
required_providers {
civo = {
source = "civo/civo"
}
}
}
# export CIVO_TOKEN=$MYTOKEN is set
provider "civo" {
@jarededwards
jarededwards / keybase.md
Created May 25, 2022 01:54
keybase proof

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

const ddTrace = require('dd-trace');
import { config } from "config"
export const tracer = ddTrace.init({
enabled: true,
env: config.env,
logInjection: true,
sampleRate: 1,
});