-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add NOTE for Cognito setup * feat: integrate tpm * feat: move tasks from github to tpm * feat: update todo * feat: update todo * feat(pm): spill over to 24.11.0 * feat(aws): bump k8s to 1.31 * feat(aws): close 017 * feat: update README.md * feat: update todo * feat: v24.11.0
- Loading branch information
1 parent
e6df67f
commit 871e7e1
Showing
21 changed files
with
392 additions
and
338 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
project: | ||
id: tln-clouds | ||
name: Talan Clouds | ||
description: Cloud Agnostic IaC based SaaS skeleton | ||
|
||
team: | ||
vlad.k: | ||
email: [email protected] | ||
name: Vladyslav Kurmaz | ||
fte: 1 | ||
|
||
timeline: | ||
- name: v24.11.1 | ||
date: 2024-11-15 12:00:00 GMT+0200 | ||
- name: v24.11.0 | ||
date: 2024-11-08 12:00:00 GMT+0200 | ||
|
||
tasks: | | ||
[-:020:v24.11.1] Ad shared component with bastion, cognito, dbs #aws @vlad.k | ||
[-:019:v24.11.1] Move Cognito user pool, app, idp to shared area #aws @vlad.k | ||
[-:018:v24.11.1] Add DB instance creation template at Tenant layer #aws @vlad.k | ||
[+:017:v24.11.0] Pin version for cognito_pre_auth_function -> 7.13.0 #aws @vlad.k | ||
[-:016:v24.11.1] Add construct/deconstruct into CI/CD @vlad.k | ||
[+:015:v24.11.0] Bump versions #aws @vlad.k | ||
[-:014] Add "coming-soon" AWS Amplify at group layer #aws @vlad.k | ||
[-:013] Add template for db-per-tenant #aws @vlad.k | ||
[-:012] Add node autoscaler #aws @vlad.k | ||
[-:011] Add pod autoscaler #aws @vlad.k | ||
[-:010] Add terraform refresh command @vlad.k | ||
[-:009] Use provided region to access k8s cluster #aws #bug @vlad.k | ||
[-:008] Troubleshoot Nginx X-Forwarded-* headers #aws [](srs/nlb) #bug @vlad.k | ||
[-:007] Add parameters for maintenance window for RDS #aws @vlad.k | ||
[-:006] Multiple domains at group layer #aws @vlad.k | ||
[-:005] .gitsibtrees is not modified if git subtree pull is failed #bug @vlad.k | ||
[-:004] Wait for k8s to destroy before VPC can be deleted #do @vlad.k | ||
[-:003] Infrastructure skeleton #gcp @vlad.k | ||
[-] Resource group, networks, bastion | ||
[-] K8s | ||
[-:002] Infrastructure skeleton #azure @vlad.k | ||
[-] Resource group, networks, bastion | ||
[-] K8s | ||
[-:001] Bastion enhancement #do @vlad.k | ||
|
||
srs: | ||
nlb: | | ||
https://github.com/kubernetes/ingress-nginx/issues/5051 | ||
https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.2/guide/service/annotations/#proxy-protocol-v2 | ||
https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/#use-proxy-protocol | ||
https://www.scaleway.com/en/docs/tutorials/proxy-protocol-v2-load-balancer/?ref=martysweet.co.uk#configuring-proxy-protocol-for-ingress-nginx | ||
https://www.martysweet.co.uk/aws-nlb-and-ip-preservation/ | ||
https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/x-forwarded-headers.html | ||
https://repost.aws/questions/QUuOlh5w61Tuij63OiAuMpOw/could-not-see-aws-lb-classic-x-forwarded-for-header |
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
terraform { | ||
required_version = "= 1.9.1" | ||
required_version = "= 1.9.8" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = "5.43.0" | ||
version = "5.74.0" | ||
} | ||
postgresql = { | ||
source = "cyrilgdn/postgresql" | ||
version = "1.22.0" | ||
version = "1.24.0" | ||
} | ||
kubernetes = { | ||
source = "hashicorp/kubernetes" | ||
version = "2.27.0" | ||
version = "2.33.0" | ||
} | ||
helm = { | ||
source = "hashicorp/helm" | ||
version = "2.13.0" | ||
version = "2.16.1" | ||
} | ||
} | ||
} |
Oops, something went wrong.