Skip to content

Commit

Permalink
Merge pull request #1 from xavipares/branch_xavi
Browse files Browse the repository at this point in the history
change port to 443
  • Loading branch information
xavipares authored May 29, 2024
2 parents f16ffeb + c338b89 commit 1235b12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_SESSION_TOKEN: ${{ secrets.AWS_SESSION_TOKEN }}

- uses: actions/github-script@v6
if: github.event_name == 'pull_request'
env:
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ resource "aws_security_group" "web" {

ingress {
description = "Web security group."
from_port = 80
to_port = 80
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = [aws_vpc.vpc.cidr_block]
}
Expand Down

0 comments on commit 1235b12

Please sign in to comment.