Commit 74b15288 authored by Anton Babenko's avatar Anton Babenko

chore: Autoformatting fixes after merge

parent b1729683
......@@ -364,8 +364,8 @@ resource "aws_security_group_rule" "ingress_with_self" {
security_group_id = local.this_sg_id
type = "ingress"
self = lookup(var.ingress_with_self[count.index], "self", true)
prefix_list_ids = var.ingress_prefix_list_ids
self = lookup(var.ingress_with_self[count.index], "self", true)
prefix_list_ids = var.ingress_prefix_list_ids
description = lookup(
var.ingress_with_self[count.index],
"description",
......@@ -396,8 +396,8 @@ resource "aws_security_group_rule" "computed_ingress_with_self" {
security_group_id = local.this_sg_id
type = "ingress"
self = lookup(var.computed_ingress_with_self[count.index], "self", true)
prefix_list_ids = var.ingress_prefix_list_ids
self = lookup(var.computed_ingress_with_self[count.index], "self", true)
prefix_list_ids = var.ingress_prefix_list_ids
description = lookup(
var.computed_ingress_with_self[count.index],
"description",
......@@ -740,8 +740,8 @@ resource "aws_security_group_rule" "egress_with_self" {
security_group_id = local.this_sg_id
type = "egress"
self = lookup(var.egress_with_self[count.index], "self", true)
prefix_list_ids = var.egress_prefix_list_ids
self = lookup(var.egress_with_self[count.index], "self", true)
prefix_list_ids = var.egress_prefix_list_ids
description = lookup(
var.egress_with_self[count.index],
"description",
......@@ -772,8 +772,8 @@ resource "aws_security_group_rule" "computed_egress_with_self" {
security_group_id = local.this_sg_id
type = "egress"
self = lookup(var.computed_egress_with_self[count.index], "self", true)
prefix_list_ids = var.egress_prefix_list_ids
self = lookup(var.computed_egress_with_self[count.index], "self", true)
prefix_list_ids = var.egress_prefix_list_ids
description = lookup(
var.computed_egress_with_self[count.index],
"description",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment