Skip to content

Commit

Permalink
Fix hostfile incompute instance
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oehrli committed Feb 19, 2021
1 parent 23aef28 commit 92a632b
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 @@ -42,7 +42,7 @@ resource "oci_core_instance" "bastion" {
guacamole_user = var.guacamole_user
guacamole_connections = base64gzip(file(local.guacamole_connections))
authorized_keys = base64gzip(file(local.ssh_public_key_path))
etc_hosts = base64gzip(local.hosts_file)
etc_hosts = base64gzip(file(local.hosts_file))
fail2ban_config = local.fail2ban_config
guacamole_initialization = base64gzip(templatefile("${path.module}/scripts/guacamole_init.template.sh", {
webhost_name = var.webhost_name
Expand Down

0 comments on commit 92a632b

Please sign in to comment.