Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
remche committed Jul 20, 2023
1 parent fa6a505 commit 787cd58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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" {
Expand Down

0 comments on commit 787cd58

Please sign in to comment.