This message was deleted.
# general
s
This message was deleted.
l
I'd solve that using bash aliases, or similar.
1
w
Got it
I’m now using this, if anyone else is interested:
Copy code
p() {
	pulumi ${@:2} --stack myOrg/$1
}
Ran like:
Copy code
p stage up
p prod up --diff
p prod up
p stage up --foo
1