mirror of
https://github.com/kasmtech/terraform.git
synced 2026-01-23 02:24:11 +00:00
13 lines
408 B
HCL
13 lines
408 B
HCL
output "kasm_zone_settings" {
|
|
description = "Upstream Auth settings to apply to Kasm Zone configuration"
|
|
value = <<ZONE
|
|
Kam Zone configuration for zone: default
|
|
Upstream Auth address: ${var.aws_region}-private.${var.aws_domain_name}
|
|
ZONE
|
|
}
|
|
|
|
output "ssh_key_info" {
|
|
description = "SSH Keys to use with Kasm Deployment"
|
|
value = module.standard.ssh_key_info
|
|
sensitive = true
|
|
}
|