From 41ee2f7e4cc1cd584fd910ea094360a29fa07d2a Mon Sep 17 00:00:00 2001 From: Arlind Bardulla Date: Sun, 31 May 2020 09:24:55 +0200 Subject: [PATCH] Fix typo for: ingress ICMP - no type, no code --- main_security_list.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main_security_list.tf b/main_security_list.tf index fa0b514..6b74635 100644 --- a/main_security_list.tf +++ b/main_security_list.tf @@ -545,8 +545,8 @@ resource "oci_core_security_list" "this" { for_each = [for x in var.security_lists[keys(var.security_lists)[count.index]].ingress_rules != null ? var.security_lists[keys(var.security_lists)[count.index]].ingress_rules : local.default_security_list_opt.ingress_rules : { proto : x.protocol - dst : x.dst - dst_type : x.dst_type + src : x.src + src_type : x.src_type stateless : x.stateless } if x.protocol == "1" && x.icmp_type == null && x.icmp_code == null ]