From 035b00de33269683e2a68f5277c167d7d540b125 Mon Sep 17 00:00:00 2001 From: William Yardley Date: Mon, 30 Jan 2023 14:57:30 -0800 Subject: [PATCH] docs: add env var variants for autoplan config options --- runatlantis.io/docs/server-configuration.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runatlantis.io/docs/server-configuration.md b/runatlantis.io/docs/server-configuration.md index 0fa36584b5..0093f69eb9 100644 --- a/runatlantis.io/docs/server-configuration.md +++ b/runatlantis.io/docs/server-configuration.md @@ -174,6 +174,8 @@ By default, changes to modules will not trigger autoplanning. See the flags belo ```bash atlantis server --autoplan-modules +# or +ATLANTIS_AUTOPLAN_MODULES=true ``` Defaults to `false`. When set to `true`, Atlantis will trace the local modules of included projects. @@ -185,6 +187,8 @@ After tracing, Atlantis will plan any project that includes a changed module. Th ```bash atlantis server --autoplan-modules-from-projects='**/init.tf' +# or +ATLANTIS_AUTOPLAN_MODULES_FROM_PROJECTS='**/init.tf' ``` Enables auto-planing of projects when a module dependency in the same repository has changed.