298 lines
6.5 KiB
HCL
298 lines
6.5 KiB
HCL
|
|
/*Copyright © 2018, Oracle and/or its affiliates. All rights reserved.
|
|||
|
|
|
|||
|
|
The Universal Permissive License (UPL), Version 1.0*/
|
|||
|
|
|
|||
|
|
|
|||
|
|
locals {
|
|||
|
|
tcp_protocol = "6"
|
|||
|
|
udp_protocol = "17"
|
|||
|
|
all_protocols = "all"
|
|||
|
|
anywhere = "0.0.0.0/0"
|
|||
|
|
db_port = "1521"
|
|||
|
|
ssh_port = "22"
|
|||
|
|
rdp_port = "3389"
|
|||
|
|
winrm_port = "5986"
|
|||
|
|
fss_ports = ["2048", "2050", "111"]
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
# Bastion Security List
|
|||
|
|
resource "oci_core_security_list" "BastionSecList" {
|
|||
|
|
compartment_id = var.compartment_ocid
|
|||
|
|
display_name = "BastionSecList"
|
|||
|
|
vcn_id = module.create_vcn.vcnid
|
|||
|
|
|
|||
|
|
egress_security_rules = [
|
|||
|
|
{
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
destination = "${local.anywhere}"
|
|||
|
|
},
|
|||
|
|
]
|
|||
|
|
|
|||
|
|
ingress_security_rules = [
|
|||
|
|
{
|
|||
|
|
tcp_options = {
|
|||
|
|
"min" = "${local.ssh_port}"
|
|||
|
|
"max" = "${local.ssh_port}"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
source = "${local.anywhere}"
|
|||
|
|
},
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
# Database System Security List
|
|||
|
|
resource "oci_core_security_list" "DBSecList" {
|
|||
|
|
compartment_id = var.compartment_ocid
|
|||
|
|
display_name = "DBSecList"
|
|||
|
|
vcn_id = module.create_vcn.vcnid
|
|||
|
|
|
|||
|
|
egress_security_rules = [
|
|||
|
|
{
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
destination = "${local.anywhere}"
|
|||
|
|
},
|
|||
|
|
]
|
|||
|
|
|
|||
|
|
ingress_security_rules = [
|
|||
|
|
{
|
|||
|
|
tcp_options = {
|
|||
|
|
"min" = "${local.ssh_port}"
|
|||
|
|
"max" = "${local.ssh_port}"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
source = "${var.vcn_cidr}"
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
tcp_options = {
|
|||
|
|
"min" = "${local.db_port}"
|
|||
|
|
"max" = "${local.db_port}"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
source = "${var.vcn_cidr}"
|
|||
|
|
},
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
# Application Server Security List
|
|||
|
|
resource "oci_core_security_list" "AppSecList" {
|
|||
|
|
compartment_id = var.compartment_ocid
|
|||
|
|
display_name = "AppSecList"
|
|||
|
|
vcn_id = module.create_vcn.vcnid
|
|||
|
|
|
|||
|
|
egress_security_rules = [
|
|||
|
|
{
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
destination = "${local.anywhere}"
|
|||
|
|
},
|
|||
|
|
]
|
|||
|
|
|
|||
|
|
ingress_security_rules = [
|
|||
|
|
{
|
|||
|
|
tcp_options = {
|
|||
|
|
"min" = "${local.ssh_port}"
|
|||
|
|
"max" = "${local.ssh_port}"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
source = "${var.vcn_cidr}"
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
tcp_options = {
|
|||
|
|
"min" = "${var.psft_app_instance_listen_port_range[0]}"
|
|||
|
|
"max" = "${var.psft_app_instance_listen_port_range[1]}"
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
source = "${var.vcn_cidr}"
|
|||
|
|
},
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
# Web Server Security List
|
|||
|
|
resource "oci_core_security_list" "WebSecList" {
|
|||
|
|
compartment_id = var.compartment_ocid
|
|||
|
|
display_name = "WebSecList"
|
|||
|
|
vcn_id = module.create_vcn.vcnid
|
|||
|
|
|
|||
|
|
egress_security_rules = [
|
|||
|
|
{
|
|||
|
|
protocol = "${local.tcp_protocol}"
|
|||
|
|
destination = "${local.anywhere}"
|
|||
|
|
},
|
|||
|
|
|