fix major issues

This commit is contained in:
Guilherme Silva
2026-07-13 20:09:03 -03:00
parent 96cd0904d6
commit ee0afe7e79
16 changed files with 398 additions and 110 deletions

View File

@@ -34,4 +34,18 @@ resource "oci_core_network_security_group_security_rule" "nsg_db_security_ingres
}
}
}
#--------------------------------------------------------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------------------------------------------------------
resource "oci_core_network_security_group_security_rule" "nsg_db_security_egress_rule_01" {
network_security_group_id = oci_core_network_security_group.db-server-nsg.id
description = "Egress to OSN"
destination = lookup(data.oci_core_services.all_services.services[1], "cidr_block")
destination_type = "SERVICE_CIDR_BLOCK"
direction = "EGRESS"
protocol = "6"
tcp_options {
destination_port_range {
max = 443
min = 443
}
}
}