From 6bcd68e410c7a1b913b51d4118eb64a46ba8daef Mon Sep 17 00:00:00 2001 From: conor Date: Tue, 16 Jul 2019 13:09:32 +0200 Subject: [PATCH] Update -p flag description to be accurate --- atmos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atmos.py b/atmos.py index 3f0aa58..cb24ea2 100755 --- a/atmos.py +++ b/atmos.py @@ -8,7 +8,7 @@ def main(argv): g.add_argument("command", help="Send commands to terraform with workspace variable context", nargs='?', default=False) parser.add_argument("-e", help="Gather shared-creds from environment variables (Dont use this flag if you dont want your ~/.aws/credentials replaced. This is for CI/CD", action='store_true', default=False) parser.add_argument("-m", help="Prevents workspace from changing with git branches automatically", action='store_true', default=False) - parser.add_argument("-p", help="Prevents workspace from changing with git branches automatically", action='store_true', default=False) + parser.add_argument("-p", help="Atmos will not add -var-file or -var args to terraform", action='store_true', default=False) args, params = parser.parse_known_args() if args.command: determine_actions(args, params)