diff options
| author | Paul Buetow <paul@buetow.org> | 2023-12-22 08:27:49 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-12-22 08:27:49 +0200 |
| commit | 0e5ff097a9c5fae99813eddbed84c136eaafd551 (patch) | |
| tree | c1b7f067dd3a5538b86bdc242287fd62e77449fe /org-buetow-base | |
| parent | a9dffaaf1f83b76a7567f65f62eb1a6349268b8f (diff) | |
more on nextcloud
Diffstat (limited to 'org-buetow-base')
| -rw-r--r-- | org-buetow-base/network.tf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/org-buetow-base/network.tf b/org-buetow-base/network.tf index d32f8ca..a128569 100644 --- a/org-buetow-base/network.tf +++ b/org-buetow-base/network.tf @@ -79,6 +79,13 @@ resource "aws_security_group" "allow_web" { } ingress { + from_port = 8080 + to_port = 8080 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { from_port = 443 to_port = 443 protocol = "tcp" |
