Skip to content

Instantly share code, notes, and snippets.

View jbouse's full-sized avatar

Jeremy T. Bouse jbouse

View GitHub Profile
{
"basics": {
"name": "Jeremy T. Bouse",
"label": "Passionate IT professional",
"image": "https://undergrid.net/wp-content/uploads/2019/06/49484540-1-e1561182621844-300x300.jpg",
"summary": "Through hands-on work experience I've been able to constantly challenge myself within the Information Technology field to maintain a competetive edge. I actively seek those positions that will challenge me to grow further and become a vital part of the organization.\n\nWhile recognizing the importance enterprises put on commerically backed software, also advocating the use of open-source solutions where appropriate and adopting open-source friendly policies within organziations to improve the open-source software offerings to better address corporate requirements.\n\nSpecialties: Linux, Debian, open-source software",
"website": "https://UnderGrid.net",
"email": "[email protected]",
"phone": "678-348-0867",
"location": {
@jbouse
jbouse / test.tf
Created October 19, 2022 19:56
AWS EKS Cluster Security Group ID lookup
data "aws_security_group" "eks_cluster" {
tags = {
"aws:eks:cluster-name" = var.eks_cluster_name
}
}
output "eks_cluster_security_group_id" {
value = data.aws_security_group.eks_cluster.id
description = "EKS Cluster Security Group ID"
}