Sourav Sarkar
10/23/2021, 5:17 PM${output:auth.CreateDashlambdaLambdaFunctionQualifiedArn}
I do not want to manually copy the arn, as we have many other use cases like dynamodb stream processing in lambda as one, which we will migrate after this. whats the best way to do this in seed ? i did not see this in the seed.run documentationsthdxr
10/23/2021, 6:04 PMFrank
Frank
output
is a Serverless Pro way to reference Arns across stacks. There’s an AWS native way to do this - stack output exports. It’s the recommended way to share Arns and other resource information across stacks.Frank
Frank
serverless.yml
. It’s exporting/importing an SNS Topic ARN in the example. You can export/import a Lambda ARN in a the similar fashion.Frank
Sourav Sarkar
10/24/2021, 3:56 AM