nixos-config/infra/modules/host/endpoints.tf

23 lines
358 B
Terraform
Raw Permalink Normal View History

2024-11-28 01:14:34 +08:00
variable "endpoints_v4" {
type = list(string)
}
variable "endpoints_v6" {
type = list(string)
}
output "endpoints" {
value = concat(var.endpoints_v4, var.endpoints_v6)
sensitive = false
}
output "endpoints_v4" {
value = var.endpoints_v4
sensitive = false
}
output "endpoints_v6" {
value = var.endpoints_v6
sensitive = false
}