Skip to content

Instantly share code, notes, and snippets.

View elig-salt's full-sized avatar
💻
Eat Sleep Code Repeat

elig-salt

💻
Eat Sleep Code Repeat
View GitHub Profile
@elig-salt
elig-salt / main.tf
Created March 3, 2022 07:52
Linkerd-Terraform-Production
# Trust Anchor (Root CA Certificate)
resource "tls_private_key" "trustanchor_key" {
count = var.enable_linkerd ? 1 : 0
algorithm = "ECDSA"
ecdsa_curve = "P256"
}
resource "tls_self_signed_cert" "trustanchor_cert" {
count = var.enable_linkerd ? 1 : 0
@elig-salt
elig-salt / configure-telepresence.go
Created January 30, 2022 13:15
Configure-telepresence
package cmd
import (
"bytes"
"errors"
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"