gpt4 book ai didi

json - 如何在我的 cloudformation 堆栈中实现 if 条件

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

我的堆栈环境和 iamprofileName 中有两个属性。如果我选择非产品环境之一,即“use1dev”、“use1qa”。我应该将 MyPlatformEC2NonProd 作为“IAMProfileName”中的默认值

如果我选择其中一种产品环境,即“useProd1”、“useProd2”。我必须将 MyPlatformEC2Prod 作为“IAMProfileName”中的默认值

我怎样才能实现这个目标

"Environment" : {
"Description" : "Environment being deployed to - use1dev, use1qa,
use1sbox etc",
"Type" : "String",
"Default" : "use1sbox",
"AllowedValues" : ["use1dev","use1qa","useProd1","useProd2"]
},
"IAMProfileName" : {
"Default" : "MyPlatformEC2",
"Type" : "String",
"Description" : "Name of IAM profile to attach to created
machines",
"AllowedValues" : ["MyPlatformEC2","MyPlatformEC2NonProd"]

最佳答案

使用 CloudFormation 条件。例如,在您的情况下,我会执行以下操作:

Conditions:
"ProdProfileCondition": {
"Fn::Or": [
{"Fn::Equals": ["useProd1", {"Ref": "Environment"}]},
{"Fn::Equals": ["useProd2", {"Ref": "Environment"}]},
]
}

现在,无论您想在何处使用 IAMProfileName 值,都可以使用如下所示的内容,

SomeAWSResource:
Properties:
"ProfileName" : [{
"Fn::If" : [
"ProdProfileCondition",
{"Ref" : "MyPlatformEC2"},
{"Ref" : "MyPlatformEC2NonProd"}
]
}]

有关如何使用条件的更多信息,请查看以下链接。

此外,您可以使用 Jinja 实现更复杂的条件,只需创建一个模板并根据条件填充值即可。但我不会详细介绍这一点,因为你所需要的已经可以满足了。

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-conditions.html

关于json - 如何在我的 cloudformation 堆栈中实现 if 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54554860/

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