clean-rose-47860
06/02/2022, 12:36 PMexport const appSettingsKeyArn = environmentStackRef.getOutput("appSettingsKeyArn");
var param = new aws.ssm.Parameter('name', {
name: 'name',
type: 'String',
value: 'value',
keyId: appSettingsKeyArn,
});
Everything in the stack is created fine, the system is working as it should be. However, everytime I run pulumi up
it is attempting to update the SSM parameter resources with a new keyId
Looking in the details of the plan, I can see that the key id is never stored in state, so pulumi is constantly trying to update it.
Does anybody know why this is happening?little-cartoon-10569
06/02/2022, 8:47 PMclean-rose-47860
06/04/2022, 4:58 PMlittle-cartoon-10569
06/05/2022, 11:32 PM