Skip to content

Instantly share code, notes, and snippets.

View camilosantana's full-sized avatar

Camilo Santana camilosantana

View GitHub Profile
@camilosantana
camilosantana / secrets.cfn.yaml
Created March 2, 2021 18:31
copilot addon for access to an aws secret
---
AWSTemplateFormatVersion: "2010-09-09"
Description: "IAM policy allows access to an AWS secret"
Parameters:
App:
Type: String
Description: Your application's name.
Env:
Type: String
Description: The environment name your service, job, or workflow is being deployed to.

Keybase proof

I hereby claim:

  • I am camilosantana on github.
  • I am camilosantana (https://keybase.io/camilosantana) on keybase.
  • I have a public key ASC2aK4v9QJ-S_LhEvJTVV68RuH-5DJxKoXsjP7Pt3Qy8wo

To claim this, I am signing this object:

@camilosantana
camilosantana / 100_generate_csr
Created June 7, 2018 22:08
generate a csr for DT agents overseas - enables DT devops to access k8s cluster - written in 40min. fingers crossed
#!/bin/bash
set +x
# pre-requisites
for PREREQ in \
/usr/bin/whoami \
/usr/bin/openssl \
/usr/bin/tar \
/usr/bin/gzip \
/usr/bin/tr;
do