mirror of
https://github.com/lingble/twenty.git
synced 2025-11-06 23:57:56 +00:00
Updates for v20+ and misc terraform bug fixes. Also refactored to use terraform variables instead of locals which helps with readability and ease of use for new users. Terraform validation is currently passing:  Additionally added [terraform-docs](https://terraform-docs.io/) to generate a more helpful README for terraform specific configuration. Raw K8s manifests were updated with changes for v20+ as well. --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
20 lines
330 B
HCL
20 lines
330 B
HCL
#############
|
|
# Providers #
|
|
#############
|
|
provider "kubernetes" {
|
|
config_path = "~/.kube/config"
|
|
}
|
|
|
|
####################
|
|
# Terraform Config #
|
|
####################
|
|
terraform {
|
|
required_version = ">= 1.9.2"
|
|
required_providers {
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
version = ">= 2.31.0"
|
|
}
|
|
}
|
|
}
|