gpt4 book ai didi

amazon-web-services - 如何在无服务器中的 aws 嵌套堆栈之间传递输出值?

转载 作者:行者123 更新时间:2023-12-03 07:13:36 25 4
gpt4 key购买 nike

Here是有关 serverless-plugin-nested-stacks 插件的自述文件。它使得将嵌套堆栈包含到主堆栈中成为可能。但是如何在堆栈之间传递值呢?例如,我在一个嵌套堆栈中创建一个资源 - 如何将其路径到另一个堆栈(嵌套堆栈或主堆栈)?

最佳答案

首先,您需要从相应的嵌套堆栈中导出资源,如下所示:

AWSTemplateFormatVersion: '2010-09-09'
Parameters:
...
Resources:
...
Outputs:
o1:
Description: ...
Value: <your_resource_arn>
Export:
Name: <your_export_name>

要导入其他堆栈中的资源,您需要使用内部函数Fn::ImportValue,如下所示:

Fn::ImportValue: <your_export_name>

有关更多信息,请查看 AWS documentation

关于amazon-web-services - 如何在无服务器中的 aws 嵌套堆栈之间传递输出值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58747587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com