Skip to content

Commit

Permalink
remove file function
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oehrli committed Feb 19, 2021
1 parent 92a632b commit 272ad6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compute.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ resource "oci_core_instance" "bastion" {
user_data = base64gzip(templatefile(local.bootstrap_cloudinit_template, {
yum_upgrade = var.yum_upgrade
guacamole_user = var.guacamole_user
guacamole_connections = base64gzip(file(local.guacamole_connections))
guacamole_connections = base64gzip(local.guacamole_connections)
authorized_keys = base64gzip(file(local.ssh_public_key_path))
etc_hosts = base64gzip(file(local.hosts_file))
etc_hosts = base64gzip(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 272ad6d

Please sign in to comment.