diff --git a/main.tf b/main.tf index 96bf993..6842df4 100644 --- a/main.tf +++ b/main.tf @@ -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 } -*/ \ No newline at end of file diff --git a/variables.tf b/variables.tf index ba0e44e..2d8e276 100644 --- a/variables.tf +++ b/variables.tf @@ -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"