^ btw, I’m trying to avoid the restrictions on the...
# sst
b
^ btw, I’m trying to avoid the restrictions on the Export option of outputs in https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html
• You can’t delete a stack if another stack references one of its outputs. • You can’t modify or remove an output value that is referenced by another stack.
f
Hey @Blake E, a common workaround I’ve seen ppl do to get around not able to modify an export is using SSM instead. So in one stack you create an SSM param with the value and export the SSM key. Then in import the SSM key in another stack.
This way you can change the value in SSM while the SSM key remains the same 🤷‍♂️
b
yeah, thats what I was thinking
or at least has been my goto solution
my team has… a lot of noise in SSM, so I have some fairly unjustified anxiety about overloading SSM at my org.
(most of our ssm is by hand not IaC)
I’ll take the ssm approach until sometime better come along, thanks @Frank