Update -p flag description to be accurate
This commit is contained in:
parent
e3f5688ee4
commit
6bcd68e410
1 changed files with 1 additions and 1 deletions
2
atmos.py
2
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)
|
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("-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("-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()
|
args, params = parser.parse_known_args()
|
||||||
if args.command:
|
if args.command:
|
||||||
determine_actions(args, params)
|
determine_actions(args, params)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue