Skip to content

Commit

Permalink
update readme and remove bastion host (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen-Choh authored Aug 14, 2024
1 parent 016f57b commit bf30ceb
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 77 deletions.
2 changes: 1 addition & 1 deletion SSG-API-Testing-Application-v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pip install -r requirements.txt
## Usage

First, open up a command prompt or terminal at the same location as this `README.md` document.
First, open up a command prompt or terminal at the same location as `Home.py` in the `\app` folder.

If you are using `conda`, make sure to activate the environment which you have installed the required Python
libraries in.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,29 +53,4 @@ resource "aws_security_group" "alb" {
tags = {
Name = "${module.constants.namespace}-application-load-balancer-sg"
}
}

# Create Bastion Host SG
resource "aws_security_group" "bastion_host" {
name = "${module.constants.namespace}-bastion-host-sg"
description = "Security group for Bastion Host"
vpc_id = aws_vpc.default.id

ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = [module.constants.broadcast_ipv4]
}

egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [module.constants.broadcast_ipv4]
}

tags = {
Name = "${module.constants.namespace}-bastion-host-sg"
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -53,29 +53,4 @@ resource "aws_security_group" "alb" {
tags = {
Name = "${module.constants.namespace}-application-load-balancer-sg"
}
}

# Create Bastion Host SG
resource "aws_security_group" "bastion_host" {
name = "${module.constants.namespace}-bastion-host-sg"
description = "Security group for Bastion Host"
vpc_id = aws_vpc.default.id

ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = [module.constants.broadcast_ipv4]
}

egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = [module.constants.broadcast_ipv4]
}

tags = {
Name = "${module.constants.namespace}-bastion-host-sg"
}
}

This file was deleted.

0 comments on commit bf30ceb

Please sign in to comment.