Skip to content

Commit 141fc14

Browse files
authored
Update README.md
1 parent b914bfb commit 141fc14

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Automating Infrastructure on Google Cloud with Terraform: Challenge Lab (GSP345) ##
22

3-
Setup : Create the configuration files
4-
Make the empty files and directories in Cloud Shell or the Cloud Shell Editor.
3+
Setup : Create the configuration files <br/>
4+
Make the empty files and directories in _Cloud Shell_ or the _Cloud Shell Editor_.
55

66
```
77
touch main.tf
@@ -21,3 +21,19 @@ touch outputs.tf
2121
touch variables.tf
2222
cd
2323
```
24+
25+
Add the following to the each _variables.tf_ file, and fill in the GCP Project ID:
26+
```
27+
variable "region" {
28+
default = "us-central1"
29+
}
30+
31+
variable "zone" {
32+
default = "us-central1-a"
33+
}
34+
35+
variable "project_id" {
36+
default = "<FILL IN PROJECT ID>"
37+
}
38+
```
39+
Add the following to the _main.tf_ file:

0 commit comments

Comments
 (0)