Skip to content

Instantly share code, notes, and snippets.

View Elycin's full-sized avatar
🗺️
Exploring

Ely Erin Haughie Elycin

🗺️
Exploring
View GitHub Profile
@Elycin
Elycin / aws-auth-cm.sh
Created August 28, 2022 03:28 — forked from pmatv/aws-auth-cm.sh
Map IAM group to EKS ConfigMap
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
IAM_GROUP=${1:-admins}
EKS_ROLE_ARN=${2:-arn:aws:iam::111122223333:role/eks-node-role}
RBAC_GROUP=${3:-system:masters}