Skip to content
Open
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 .github/workflows/tf-apply-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: "us-east-1"
AWS_REGION: "eu-central-1"

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tf-destroy-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: "us-east-1"
AWS_REGION: "eu-central-1"

defaults:
run:
Expand Down
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.terraform
*.tfvars
*.tfvars.json
*.tfstate
*.tfstate.*
.venv
venv/
modules/module-1/resources/lambda/out
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Escalation Path:

# Pricing

The resources created with the deployment of AWSGoat will not incur any charges if the AWS account is under the free tier/trial period. However, upon exhaustion/ineligibility of the free tier/trial, the following charges will apply for the US-East region:
The resources created with the deployment of AWSGoat will not incur any charges if the AWS account is under the free tier/trial period. However, upon exhaustion/ineligibility of the free tier/trial, the following charges will apply for the eu-central region:

Module 1: **$0.0125/hour**

Expand Down
2 changes: 1 addition & 1 deletion attack-manuals/module-1/07-IAM Privilege Escalation.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Now, run the below-mentioned command to list the lambda functions in the specifi
Command:

```bash
aws lambda list-functions --region us-east-1
aws lambda list-functions --region eu-central-1
```

You will get the following output
Expand Down
80 changes: 80 additions & 0 deletions modules/module-1/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/module-1/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
}
}
provider "aws" {
region = "us-east-1"
region = "eu-central-1"
}

data "aws_caller_identity" "current" {}
Expand Down Expand Up @@ -3445,7 +3445,7 @@ resource "aws_internet_gateway" "goat_gw" {
resource "aws_subnet" "goat_subnet" {
vpc_id = aws_vpc.goat_vpc.id
cidr_block = "192.168.0.0/24"
availability_zone = "us-east-1a"
availability_zone = "eu-central-1a"
map_public_ip_on_launch = true
tags = {
Name = "AWS_GOAT App subnet"
Expand Down
Loading