diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-09 09:36:56 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-09 09:36:56 +0200 |
commit | b89df1a61a2bae8b1f4de4c6d238c9034c2cf326 (patch) | |
tree | fb4fd1097c3cdecf66470941a2131c186f563bf7 /yandex/server/main.tf | |
parent | add README.md (diff) | |
download | infra-terraform-b89df1a61a2bae8b1f4de4c6d238c9034c2cf326.tar.gz infra-terraform-b89df1a61a2bae8b1f4de4c6d238c9034c2cf326.zip |
move common config files to etc/
Diffstat (limited to 'yandex/server/main.tf')
-rw-r--r-- | yandex/server/main.tf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yandex/server/main.tf b/yandex/server/main.tf index 12d31d9..b9d4650 100644 --- a/yandex/server/main.tf +++ b/yandex/server/main.tf @@ -1,5 +1,5 @@ locals { - sshd_config = templatefile("${path.module}/etc/sshd_config", { + sshd_config = templatefile("${path.module}/../../etc/sshd_config", { port = var.ssh_port users = [var.user] }) @@ -30,7 +30,7 @@ resource "yandex_compute_instance" "this" { } metadata = { - user-data = templatefile("${path.module}/etc/cloud-init.cfg", { + user-data = templatefile("${path.module}/../../etc/cloud-init.cfg", { user = var.user ssh_keys = var.ssh_keys sshd_config = local.sshd_config |