作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法在statement
中有条件地添加aws_iam_policy_document
块?我正在寻找类似的东西:
data "aws_iam_policy_document" "policy" {
statement {
sid = "PolicyAlways"
...
}
if (var.enable_optional_policy) {
statement {
sid = "PolicySometimes"
...
}
}
}
最佳答案
是的。您可以(ab)使用带有boolean值的 dynamic
block来选择性地包括该块。
data "aws_iam_policy_document" "policy" {
statement {
sid = "PolicyAlways"
...
}
dynamic "statement" {
# The contents of the list below are arbitrary, but must be of length one.
# It is only used to determine whether or not to include this statement.
for_each = var.enable_optional_policy ? [1] : []
content {
sid = "PolicySometimes"
...
}
}
}
关于Terraform:aws_iam_policy_document中的条件语句 block ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62029196/
这部分存储桶策略如何写成 aws_iam_policy_document? "Condition": { "StringEquals": { "s3:x
我是一名优秀的程序员,十分优秀!