summaryrefslogtreecommitdiff
path: root/terraform/oci.tf
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-08 21:43:53 -0500
committerSeth Flynn <[email protected]>2025-02-08 21:58:07 -0500
commit8ab941349bb62adcceec583dc1e08d36bc696e93 (patch)
treec28823f150efc35a2b9bdf822878f262acc6990c /terraform/oci.tf
parent9b3b1f2a43cd4e5686a713e60cadaf9598aa2a1d (diff)
atlas: don't use cloudflare tunnels
Diffstat (limited to 'terraform/oci.tf')
-rw-r--r--terraform/oci.tf24
1 files changed, 24 insertions, 0 deletions
diff --git a/terraform/oci.tf b/terraform/oci.tf
index 704ff2c..9801e3b 100644
--- a/terraform/oci.tf
+++ b/terraform/oci.tf
@@ -55,4 +55,28 @@ resource "oci_core_security_list" "borealis_global" {
protocol = "1"
source = "10.0.0.0/16"
}
+
+ ingress_security_rules {
+ description = "Allow HTTP traffic"
+
+ protocol = "6"
+ source = "0.0.0.0/0"
+
+ tcp_options {
+ min = 80
+ max = 80
+ }
+ }
+
+ ingress_security_rules {
+ description = "Allow HTTPS traffic"
+
+ protocol = "6"
+ source = "0.0.0.0/0"
+
+ tcp_options {
+ min = 443
+ max = 443
+ }
+ }
}