Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update readme and remove bastion host #33

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}
13 changes: 0 additions & 13 deletions SSG-API-Testing-Application-v2/deploy/main-infrastructure/ssh.tf

This file was deleted.

Loading