Skip to content

Commit

Permalink
change ssh authorized key handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oehrli committed Apr 24, 2021
1 parent 9abd8c1 commit 035d74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compute.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource "oci_core_instance" "bastion" {
yum_upgrade = var.yum_upgrade
guacamole_user = var.guacamole_user
guacamole_connections = base64gzip(local.guacamole_connections)
authorized_keys = base64gzip(file(local.ssh_public_key_path))
authorized_keys = base64gzip(local.ssh_authorized_keys)
etc_hosts = base64gzip(local.hosts_file)
fail2ban_config = local.fail2ban_config
guacamole_initialization = base64gzip(templatefile("${path.module}/scripts/guacamole_init.template.sh", {
Expand Down

0 comments on commit 035d74f

Please sign in to comment.