These are some sensible defaults; a good place to start.
Located: "$HOME/Library/Application Support/Cursor/User/settings.json"
# print.func example output | |
# REF: https://gist.github.com/todd-dsm/17560775b7e5e4d22339885eeb276784 | |
% ./template.sh | |
-------------------------------------------------------------------------------- | |
Lets do some STUFF! | |
-------------------------------------------------------------------------------- | |
Do thing... |
######################################################################################################################## | |
# EKS Addons | |
# VER: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/releases | |
# TFR: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons#usage | |
# GHR: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/blob/99520ae0125df7b24163e14cf4eba2c96fcf14bd/docs/amazon-eks-addons.md#configuration-values | |
######################################################################################################################## | |
module "eks_blueprints_addons" { | |
source = "aws-ia/eks-blueprints-addons/aws" | |
version = "~> 1.21.0" |
######################################################################################################################## | |
# Modern Istio Gateway using Kubernetes Gateway API | |
# Infrastructure (Deployment/Service) is automatically provisioned by Istio | |
######################################################################################################################## | |
# https://istio.io/latest/docs/tasks/traffic-management/ingress/gateway-api/ | |
# https://gateway-api.sigs.k8s.io/guides/ | |
# https://istio.io/latest/docs/setup/additional-setup/gateway/#gateway-deployment-topologies | |
######################################################################################################################## | |
# Gateway Class for Istio (defines the controller) | |
resource "kubernetes_manifest" "istio_gateway_class" { |
# Deploy the TEST app to the demo namespace | |
# REF: https://bit.ly/3EKx0cT | |
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: demo | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment |
# REF HCP: https://developer.hashicorp.com/vault/docs/platform/k8s/helm/configuration | |
# REF VAL: https://github.com/hashicorp/vault-helm/blob/main/values.yaml | |
# REF PLT: https://repo1.dso.mil/big-bang/product/packages/vault/-/blob/main/chart/values.yaml | |
# --------------------------------------------------------------------------------------------------------- | |
global: | |
enabled: true | |
namespace: "vault" | |
tlsDisable: true # Default: true | |
imagePullSecrets: | |
- name: private-registry |
# Deploy webapp to test the demo namespace | |
# REF: https://bit.ly/3EKx0cT | |
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: demo | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment |