12 lines
165 B
Terraform
12 lines
165 B
Terraform
|
|
output "path" {
|
||
|
|
value = local.data_path
|
||
|
|
}
|
||
|
|
|
||
|
|
output "namespace" {
|
||
|
|
value = kubernetes_namespace.sftpgo.metadata[0].name
|
||
|
|
}
|
||
|
|
|
||
|
|
output "app_name" {
|
||
|
|
value = "sftpgo"
|
||
|
|
}
|