-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Atlantis ignore project option #1288
Comments
Thank you for the suggestion @tomasbackman ! This seems like a perfectly reasonable feature to include. |
This is a bit of scope creep (maybe a different issue) but it could be nice to support wildcards as well for -I / -p. Would let you do something like "atlantis apply -I prod-*" Or similarly being able to "atlantis apply -p staging-*". If wildcards aren't supported, allowing multiple values to be passed could support similar functionality (though more verbose). |
I have a similar use case, I would like to be able to do an atlantis plan on all projects that have certain label or tag defined in For example projects:
- name: my-dir-1
dir: dir-1/
tags:
- common-tag
- b
- c
- name: my-dir-2
dir: dir-2/
tags:
- common-tag
- b
- c
- name: my-dir-3
dir: dir-3/
tags:
- d Then you could do something like |
I have been (and still am) away from the terraform/atlantis, and almost even github world since I started my new gig in early 2021.. so haven't looked any at this, but the addition of wildcards by @bewie probably fulfils the need/use case that I created this issue from, as well as providing even more flexibility. (So helping @mwarkentin, but not @dsolsona ) |
Not sure if I understood correctly - but was it actually implemented and released? I mean the ability to specify multiple projects to apply explicitely (without regexp, just a full name) AND/OR to ignore a chosen one? |
Currently it is possible to run
atlantis plan/apply
for doing on all projects in PR oratlantis plan/apply -p
for running just on one specific project.But from time to time it happens that out of 10 projects I want to apply on all but 1.. then I have to write 9
atlantis apply -p xxx
instead of just oneatlantis apply -i xxx
The text was updated successfully, but these errors were encountered: