Added airflow to modules

This commit is contained in:
Sandro La Bruzzo 2024-04-22 12:29:21 +02:00
parent 7a8a2e6285
commit 0863c9b2e9
2 changed files with 5 additions and 4 deletions

View File

@ -1,14 +1,16 @@
module "minio" {
source = "./modules/minio"
kube_context = var.kube_context
namespace_prefix=var.namespace_prefix
}
/*
module "airflow" {
source = "./modules/airflow"
kube_context = var.kube_context
admin_user = var.admin_user
admin_password = var.admin_password
namespace_prefix= var.namespace_prefix
admin_hash = var.admin_hash
env = var.env
domain = var.domain
@ -17,4 +19,3 @@ module "airflow" {
s3_secret = var.s3_secret
}
*/

View File

@ -15,7 +15,7 @@ variable "kube_context" {
variable "namespace_prefix" {
type = string
default = "lot1-"
default = "dnet-"
}
variable "domain" {
@ -36,7 +36,7 @@ variable "admin_hash" {
}
variable "s3_endpoint" {
default = "https://minio.lot1-minio-tenant.svc.cluster.local"
default = "https://minio.dnet-minio-tenant.svc.cluster.local"
}
variable "s3_key" {
default = "minio"