We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 608b67f commit f43c13cCopy full SHA for f43c13c
main.tf
@@ -202,7 +202,6 @@ data "aws_iam_policy_document" "default" {
202
count = module.this.enabled && (length(var.iam_authorizing_role_arns) > 0 || length(var.iam_role_arns) > 0) ? 1 : 0
203
204
statement {
205
- sid = "AllowEsAccessToSpecifiedRoles"
206
effect = "Allow"
207
208
actions = distinct(compact(var.iam_actions))
@@ -224,7 +223,6 @@ data "aws_iam_policy_document" "default" {
224
223
dynamic "statement" {
225
for_each = length(var.allowed_cidr_blocks) > 0 && ! var.vpc_enabled ? [true] : []
226
content {
227
- sid = "AllowAnonymousEsAccessFromCIDR"
228
229
230
0 commit comments