Giter VIP home page Giter VIP logo

camunda / camunda-tf-eks-module Goto Github PK

View Code? Open in Web Editor NEW
1.0 4.0 0.0 221 KB

Terraform modules targeting AWS EKS Cluster creation for Camunda 8 Self-Managed usage on AWS

Home Page: https://docs.camunda.io/docs/self-managed/setup/deploy/amazon/amazon-eks/eks-terraform/

License: Apache License 2.0

HCL 41.46% Just 2.02% Shell 0.81% Go 55.72%
camunda-infraex c8 camunda eks team-infrastructure-experience terraform

camunda-tf-eks-module's Introduction

Camunda Terraform EKS Modules

Camunda tests License

Terraform module which creates AWS EKS (Kubernetes) resources with an opinionated configuration targeting Camunda 8.

Documentation

The related guide describing a more detailed usage. Consider installing Camunda 8 via following guide after having deployed the AWS EKS cluster.

Usage

Following is a simple example configuration and should be adjusted as required.

See AWS EKS Cluster inputs and AWS Aurora RDS inputs for further configuration options and how they affect the cluster creation.

module "eks_cluster" {
  source = "github.com/camunda/camunda-tf-eks-module/modules/eks-cluster"

  region             = "eu-central-1"
  name               = "cluster-name"

  cluster_service_ipv4_cidr = "10.190.0.0/16"
  cluster_node_ipv4_cidr    = "10.192.0.0/16"
}
module "postgresql" {
  source                     = "github.com/camunda/camunda-tf-eks-module/modules/aurora"
  engine_version             = "15.4"
  auto_minor_version_upgrade = false
  cluster_name               = "cluster-name-postgresql"

  username         = "username"
  password         = "password"
  vpc_id           = module.eks_cluster.vpc_id
  subnet_ids       = module.eks_cluster.private_subnet_ids
  cidr_blocks      = concat(module.eks_cluster.private_vpc_cidr_blocks, module.eks_cluster.public_vpc_cidr_blocks)
  instance_class   = "db.t3.medium"
  iam_auth_enabled = true

  depends_on = [module.eks_cluster]
}

Support

Please note that the modules have been tested with Terraform in the version described in the .tool-versions of this project.

camunda-tf-eks-module's People

Contributors

renovate[bot] avatar langleu avatar leiicamundi avatar

Stargazers

 avatar

Watchers

Daniel Meyer avatar Catalina Moisuc avatar  avatar  avatar

camunda-tf-eks-module's Issues

Upgrade AuroraDB CA

rds-ca-2019 is reaching its EOL, we should consider upgrading the CA Cert to rds-ca-rsa4096-g1

Uses a certificate authority with RSA 4096 private key algorithm and SHA384 signing algorithm. This CA supports automatic server certificate rotation.

https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html

Starting August 22, 2024, RDS will automatically upgrade your Certificate Authority during an upcoming maintenance window. You can view the affected databases here

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Awaiting Schedule

These updates are awaiting their schedule. Click on a checkbox to get an update now.

  • chore(deps): update patch-grouped (awscli, camunda/infraex-common-config)
  • chore(deps): update minor-grouped (antonbabenko/pre-commit-terraform, renovatebot/pre-commit-hooks)
  • fix(deps): update aws-sdk-go-v2 monorepo (github.com/aws/aws-sdk-go-v2, github.com/aws/aws-sdk-go-v2/config, github.com/aws/aws-sdk-go-v2/service/ec2, github.com/aws/aws-sdk-go-v2/service/eks, github.com/aws/aws-sdk-go-v2/service/iam, github.com/aws/aws-sdk-go-v2/service/kms, github.com/aws/aws-sdk-go-v2/service/rds)

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

asdf
.tool-versions
  • awscli 2.16.9
  • golang 1.22.4
  • just 1.29.1
  • opentofu 1.7.2
  • pre-commit 3.7.1
  • terraform 1.8.5
  • terraform-docs 0.18.0
  • tflint 0.51.1
  • tfsec 1.28.6
github-actions
.github/workflows/labeler.yml
  • actions/labeler v5@8558fd74291d67161a8a78ce36a881fa63b766a9
  • camunda/infraex-common-config f790ac06800e531768e27f6905c9dc90183aa3a7
.github/workflows/links.yml
  • actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332
  • actions/cache v4@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
  • lycheeverse/lychee-action v1.10.0@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621
  • peter-evans/create-issue-from-file v5@24452a72d85239eacf1468b0f1982a9f3fec4c94
  • camunda/infraex-common-config f790ac06800e531768e27f6905c9dc90183aa3a7
.github/workflows/lint.yml
  • actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332
  • asdf-vm/actions v3@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
  • pre-commit/action v3.0.1@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd
.github/workflows/tests.yml
  • actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332
  • actions/checkout v4@692973e3d937129bcbf40652eb9f2f61becf3332
  • asdf-vm/actions v3@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
  • hashicorp/vault-action v3@d1720f055e0635fd932a1d2a48f87a666a57906c
  • Eun/go-mod-details v1@b719cd324463e2037cf3a0dd1dd6091bdc2730f4
  • actions/upload-artifact v4@65462800fd760344b1a7b4382951275a0abb4808
  • actions/download-artifact v4@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
  • test-summary/action v2@032c8a9cec6aaa3c20228112cae6ca10a3b29336
  • camunda/infraex-common-config f790ac06800e531768e27f6905c9dc90183aa3a7
gomod
test/src/go.mod
  • go 1.22.2
  • go 1.22.4
  • github.com/aws/aws-sdk-go-v2 v1.27.2
  • github.com/aws/aws-sdk-go-v2/config v1.27.18
  • github.com/aws/aws-sdk-go-v2/service/ec2 v1.164.1
  • github.com/aws/aws-sdk-go-v2/service/eks v1.43.1
  • github.com/aws/aws-sdk-go-v2/service/iam v1.32.6
  • github.com/aws/aws-sdk-go-v2/service/kms v1.33.0
  • github.com/aws/aws-sdk-go-v2/service/rds v1.79.6
  • github.com/aws/smithy-go v1.20.2
  • github.com/gruntwork-io/terratest v0.46.15
  • github.com/stretchr/testify v1.9.0
  • go.uber.org/zap v1.27.0
  • k8s.io/api v0.30.2
  • k8s.io/apimachinery v0.30.2
  • k8s.io/client-go v0.30.2
  • sigs.k8s.io/aws-iam-authenticator v0.6.20
pre-commit
.pre-commit-config.yaml
  • pre-commit/pre-commit-hooks v4.6.0
  • rhysd/actionlint v1.7.1
  • renovatebot/pre-commit-hooks 37.412.2
  • compilerla/conventional-pre-commit v3.2.0
  • antonbabenko/pre-commit-terraform v1.91.0
  • dnephin/pre-commit-golang v0.5.1
regex
.tool-versions
  • eksctl-io/eksctl 0.183.0
justfile
  • gotestyourself/gotestsum v1.12.0
  • gotestyourself/gotestsum v1.12.0
terraform
modules/eks-cluster/cluster.tf
  • terraform-aws-modules/eks/aws 19.21.0
modules/eks-cluster/iam.tf
  • terraform-aws-modules/iam/aws 5.39.1
  • terraform-aws-modules/iam/aws 5.39.1
  • terraform-aws-modules/iam/aws 5.39.1
modules/eks-cluster/vpc.tf
  • terraform-aws-modules/vpc/aws 5.8.1

  • Check this box to trigger a request for Renovate to run again on this repository

Integrate Karpenter for EKS Auto Scaling

Issue Description

Introduction

Integrating Karpenter into our Camunda Terraform EKS Modules to enhance auto-scaling capabilities.

Benefits

Karpenter optimizes resource usage, reducing costs: Scales resources based on demand, avoiding over-provisioning.

Additional Information

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.