gpt4 book ai didi

amazon-web-services - AWS Cloudformation - 如何使用 If Else 条件

转载 作者:行者123 更新时间:2023-12-04 22:39:31 25 4
gpt4 key购买 nike

我刚开始编写 AWS Cloudformation 模板。我正在尝试在我的 CF 模板上使用 If Else 条件。如何将 if else 语句与资源一起使用?

If AWS::Region == eu-central-1 ==> create resource , else continue.

最佳答案

在条件部分定义条件

Conditions:
createResource: !Equals [ !Ref 'AWS::Region', 'eu-central-1']

然后利用你的资源

Resources:
MyResourcesOnlyCreatedSometime:
Condition: createResource
Type: AWS::Blah::Blah

关于amazon-web-services - AWS Cloudformation - 如何使用 If Else 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54752989/

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