forked from oracle-terraform-modules/terraform-oci-vcn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcn_defaultresources.tf
58 lines (49 loc) · 1.45 KB
/
vcn_defaultresources.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright (c) 2021, Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
# VCN default Security List Lockdown
// See Issue #22 for the reasoning
resource "oci_core_default_security_list" "lockdown" {
// If variable is true, removes all rules from default security list
manage_default_resource_id = oci_core_vcn.vcn.default_security_list_id
count = var.lockdown_default_seclist == true ? 1 : 0
}
resource "oci_core_default_security_list" "restore_default" {
// If variable is false, restore all default rules to default security list
manage_default_resource_id = oci_core_vcn.vcn.default_security_list_id
egress_security_rules {
// allow all egress traffic
destination = "0.0.0.0/0"
protocol = "all"
}
ingress_security_rules {
// allow all SSH
protocol = "6"
source = "0.0.0.0/0"
tcp_options {
min = 22
max = 22
}
}
ingress_security_rules {
// allow ICMP for all type 3 code 4
protocol = "1"
source = "0.0.0.0/0"
icmp_options {
type = "3"
code = "4"
}
}
dynamic "ingress_security_rules" {
//allow all ICMP from all VCN CIDRs
for_each = oci_core_vcn.vcn.cidr_blocks
iterator = vcn_cidr
content {
protocol = "1"
source = vcn_cidr.value
icmp_options {
type = "3"
}
}
}
count = var.lockdown_default_seclist == false ? 1 : 0
}