Add exclusion to adding project prefix to default workspace
This commit is contained in:
parent
53175c47a6
commit
a72d1c1c01
1 changed files with 1 additions and 1 deletions
2
atmos.py
2
atmos.py
|
|
@ -26,7 +26,7 @@ def determine_actions(args, params):
|
|||
|
||||
workspace = workspaces.get_env()
|
||||
workspace_vars = workspace
|
||||
if (args.project):
|
||||
if (args.project) and workspace != 'default':
|
||||
workspace = args.project + "-" + workspace
|
||||
|
||||
env_actions = ["init", "plan", "apply", "destroy"] # Commands that require env context
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue