From 74bedd3a1251eb5f1f9234fab3d56b344ca940cf Mon Sep 17 00:00:00 2001 From: Bruno Schaatsbergen <58337159+bschaatsbergen@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:36:03 +0200 Subject: [PATCH] Update main.tf Co-authored-by: Koen van Zuijlen <8818390+kvanzuijlen@users.noreply.github.com> --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 4a3bed4..48e05ce 100644 --- a/main.tf +++ b/main.tf @@ -1,7 +1,7 @@ locals { # The default port that Atlantis runs on is 4141, we default to this. atlantis_port = lookup(var.env_vars, "ATLANTIS_PORT", 4141) - # Atlantis its home directory is "/home/atlantis", we default to this. + # Atlantis' home directory is "/home/atlantis", we default to this. atlantis_data_dir = lookup(var.env_vars, "ATLANTIS_DATA_DIR", "/home/atlantis") atlantis_port_name = "atlantis" atlantis_network_traffic_tags = ["atlantis-${random_string.random.result}"]