You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we use --enable-regexp-cmd flag in Atlantis, it would be nice to have such parameter in repository atlantis.yaml:
allowed_regexp_prefixes:
- dev/
- staging/
to allow, for example, execution of atlantis apply -p dev/.* and atlantis apply -p staging/.*, but don't allow any other regex matches, for safety and security reasons. It should be relatively easy to implement. WDYT? Any contradictions for this? 🙂
Thank you!
The text was updated successfully, but these errors were encountered:
Another way could be making an analog of --disable-apply-all flag, but per-project.
Like, enabling atlantis apply globally, but having some flag like disable_apply_all: true or skip_apply_all: true for the particular sensitive projects, which we would like to apply only explicitly (boolean flags are usually easier to implement):
First, thank you for this awesome software! 🎉
Issue
If we use
--enable-regexp-cmd
flag in Atlantis, it would be nice to have such parameter in repositoryatlantis.yaml
:to allow, for example, execution of
atlantis apply -p dev/.*
andatlantis apply -p staging/.*
, but don't allow any other regex matches, for safety and security reasons. It should be relatively easy to implement. WDYT? Any contradictions for this? 🙂Thank you!
The text was updated successfully, but these errors were encountered: