Skip to content

Instantly share code, notes, and snippets.

View gonzalovazquez's full-sized avatar
💭
Focusing on GraphQL

Gonzalo Vazquez gonzalovazquez

💭
Focusing on GraphQL
View GitHub Profile
@gonzalovazquez
gonzalovazquez / setting.json
Created April 29, 2020 17:42
VSCode Settings
{
"window.zoomLevel": 0,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"git.autofetch": true,
"git.confirmSync": false,
"liveshare.featureSet": "stable",
"workbench.activityBar.visible": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.colorTheme": "Shades of Purple",
@gonzalovazquez
gonzalovazquez / eks-role.yml
Last active April 27, 2025 17:42
Terraform file to creating a role for provisioning EKS cluster and resources using OIDC
# Check if OIDC provider exists
data "aws_iam_openid_connect_provider" "existing_github" {
count = 1
url = "https://token.actions.githubusercontent.com"
}
# Use existing provider ARN
locals {
github_oidc_provider_arn = "arn:aws:iam::**********:oidc-provider/token.actions.githubusercontent.com"
}