Home > database >  Cross stack reference from 2 different AWS accounts
Cross stack reference from 2 different AWS accounts

Time:05-05

I saw that you could store the attributes from stack A in a parameter store created in Acc B and use dynamic references in stack B to fetch the values from the store.

I created a parameter store in account B via CFN, and can use dynamic references to fetch the valu

How do I store the attribute from stack A in account B?

CodePudding user response:

You have to create your own custom resource for that. It would be in the form of a lambda function, which you would develop and program to access other account and return what you need to your first account.

  • Related