作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的堆栈环境和 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 实现更复杂的条件,只需创建一个模板并根据条件填充值即可。但我不会详细介绍这一点,因为你所需要的已经可以满足了。
关于json - 如何在我的 cloudformation 堆栈中实现 if 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54554860/
我是一名优秀的程序员,十分优秀!