20 lines
No EOL
371 B
HCL
20 lines
No EOL
371 B
HCL
output "files" {
|
|
value = concat(
|
|
[
|
|
local.sshd_config_file,
|
|
],
|
|
local.use_unix_socket_files[var.listen_unix],
|
|
)
|
|
}
|
|
|
|
output "systemd_units" {
|
|
value = local.systemd_units_on_socket_activation[var.use_socket_activation]
|
|
}
|
|
|
|
output "users" {
|
|
value = local.chrooted_users
|
|
}
|
|
|
|
output "groups" {
|
|
value = local.chrooted_groups
|
|
} |