Skip to content

Commit

Permalink
Clarify bootstrap steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkahlbrock committed Aug 30, 2022
1 parent 3ca3145 commit 10f1223
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 0-bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Terraform v1.1.9

### Bootstrap the Terraform project

1. Create a new folder and cd into it.
1. Create a new folder `my-project` and cd into it.
1. Create a new file `main.tf`
2. Add these lines to the `main.tf`:
```tf
Expand Down
7 changes: 7 additions & 0 deletions 0-bootstrap/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
terraform {
required_version = "~> 1.1.7"
}

provider "aws" {
region = "eu-central-1"
}

0 comments on commit 10f1223

Please sign in to comment.