Skip to content

Commit

Permalink
Update README and fix bug on S3 bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlga committed Dec 3, 2023
1 parent 1b542da commit 23bdb53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ My estimation based on tests running 24/7 in all instances available on the auto
## Getting Started
To deploy this infrastructure, ensure you have Terraform installed and configured with AWS credentials. Follow the steps below:

0. Make sure you have Terraform (v1.6.3) installed and configured with AWS credentials
1. Initialize Terraform: `terraform init`
2. Plan the deployment: `terraform plan`
3. Apply the configuration: `terraform apply -auto-approve`
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ terraform {
version = "~> 4.0.0"
}
}
required_version = ">= 1.6.0"
required_version = "= 1.6.3"

backend "s3" {
bucket = "bucket-terraform-insper"
bucket = "bucket-terraform-victor"
key = "terraform.tfstate"
region = "us-east-1"
}
Expand Down

0 comments on commit 23bdb53

Please sign in to comment.