summaryrefslogtreecommitdiff
path: root/terraform/oci.tf
diff options
context:
space:
mode:
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
+ }
+ }
}