From 10f1223461166de82b23859e7a962bb22f74a7c3 Mon Sep 17 00:00:00 2001 From: Till Kahlbrock Date: Tue, 30 Aug 2022 11:19:47 +0200 Subject: [PATCH] Clarify bootstrap steps --- 0-bootstrap/README.md | 2 +- 0-bootstrap/main.tf | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 0-bootstrap/main.tf diff --git a/0-bootstrap/README.md b/0-bootstrap/README.md index 5168c87..ad5afae 100644 --- a/0-bootstrap/README.md +++ b/0-bootstrap/README.md @@ -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 diff --git a/0-bootstrap/main.tf b/0-bootstrap/main.tf new file mode 100644 index 0000000..2560387 --- /dev/null +++ b/0-bootstrap/main.tf @@ -0,0 +1,7 @@ +terraform { + required_version = "~> 1.1.7" +} + +provider "aws" { + region = "eu-central-1" +}