- EKS Workshop - https://www.eksworkshop.com/
- EKS Upgrades Workshop - https://eks-upgrades-workshop.netlify.app/docs/intro/
- EKS Immersion Workshop - https://catalog.workshops.aws/eks-immersionday/en-US
- EKS Blueprints for Terraform - https://catalog.workshops.aws/eks-blueprints-terraform/en-US
- Amazon EKS Blueprints CDK - https://aws-quickstart.github.io/cdk-eks-blueprints
- Amazon EKS Terraform Workshop - https://tf-eks-workshop.workshop.aws/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "teams" { | |
| description = "Teams details" | |
| type = map(object({ | |
| projects = set(string) | |
| })) | |
| default = { | |
| Analytics : { | |
| projects = ["Rappy"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: Base stack to create a Cloud9 instance for use with Workspace Blueprint workspace | |
| Parameters: | |
| # Workspace Parameters | |
| Cloud9IDEInstanceType: | |
| Description: The type of instance to connect to the environment | |
| Type: String | |
| Default: t3.large | |
| AllowedValues: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "regexp" | |
| "strings" | |
| ) | |
| var rex = regexp.MustCompile(`(latest-version)=(v[0-9].+[0-9].+[0-9])`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| CERTS_DIR="$(openssl version -d | sed -E 's/OPENSSLDIR: "([^"]*)"/\1/')" | |
| exec {ALL_CERTS_FD}< <( | |
| ( | |
| [[ -r "${CERTS_DIR}/cert.pem" ]] && echo "${CERTS_DIR}/cert.pem" | |
| [[ -d "${CERTS_DIR}/certs" ]] && find -L "${CERTS_DIR}/certs" -type f -name '*.pem' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //打印文件内容 | |
| package main | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "fmt" | |
| "os" | |
| "io" | |
| "path/filepath" |