From 787cd5884fd55585ef7cd2ecf4f2517fd9c7110b Mon Sep 17 00:00:00 2001 From: remche Date: Thu, 20 Jul 2023 09:55:39 +0200 Subject: [PATCH] fmt --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 0d668ff..2dfbc7a 100644 --- a/main.tf +++ b/main.tf @@ -21,7 +21,7 @@ locals { rke2_token = random_string.rke2_token.result registries_conf = var.registries_conf proxy_url = var.proxy_url - no_proxy = concat(["localhost","127.0.0.1","169.254.169.254","127.0.0.0/8","169.254.0.0/16","10.0.0.0/8","172.16.0.0/12","192.168.0.0/16"], var.no_proxy) + no_proxy = concat(["localhost", "127.0.0.1", "169.254.169.254", "127.0.0.0/8", "169.254.0.0/16", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"], var.no_proxy) } tmpdir = "${path.root}/.terraform/tmp/rke2" ssh_key_arg = var.use_ssh_agent ? "" : "-i ${var.ssh_key_file}" @@ -89,7 +89,7 @@ module "server" { manifests_gzb64 = var.manifests_gzb64 do_upgrade = var.do_upgrade proxy_url = var.proxy_url - no_proxy = concat(["localhost","127.0.0.1","169.254.169.254","127.0.0.0/8","169.254.0.0/16","10.0.0.0/8","172.16.0.0/12","192.168.0.0/16"], var.no_proxy) + no_proxy = concat(["localhost", "127.0.0.1", "169.254.169.254", "127.0.0.0/8", "169.254.0.0/16", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"], var.no_proxy) } resource "local_file" "tmpdirfile" {