output.tf 566 B

123456789
  1. output "output" {
  2. value = {
  3. dns_zone_id = yandex_dns_zone.firezone-zone.id # DNZ zone id
  4. ssh_pub_key = tls_private_key.ssh.public_key_openssh # SSH public key for access VM
  5. admin_password = random_string.firezone_admin_password.result # admin password for Firezone Web UI
  6. pg_fqdn = yandex_mdb_postgresql_cluster.pg_cluster.host.0.fqdn # PostgreSQL cluster FQDN
  7. pg_pass = random_string.postgres_user_password.result # PostgeSQL database user password
  8. }
  9. }