Skip to content

Commit 32ab4cc

Browse files
authored
Update README.md
1 parent 09c9166 commit 32ab4cc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,18 +111,18 @@ allow_stopping_for_update = true
111111
```
112112
To import the first instance, use the following command, using the Instance ID for _tf-instance-1_ you copied down earlier.
113113
```
114-
terraform import module.instances.google_compute_instance.tf-instance-1 <Instance ID - 1>
114+
terraform import module.instances.google_compute_instance.tf-instance-1 <FILL IN INSTANCE 1 ID>
115115
```
116116
To import the second instance, use the following command, using the Instance ID for _tf-instance-2_ you copied down earlier.
117117
```
118-
terraform import module.instances.google_compute_instance.tf-instance-2 <Instance ID - 2>
118+
terraform import module.instances.google_compute_instance.tf-instance-2 <FILL IN INSTANCE 2 ID>
119119
```
120120
The two instances have now been imported into your terraform configuration. You can now run the commands to update the state of Terraform. Type _yes_ at the dialogue after you run the apply command to accept the state changes.
121121
```
122122
terraform plan
123123
terraform apply
124124
```
125-
**TASK 2: Configure a remote backend** <br/>
125+
<br/> **TASK 2: Configure a remote backend** <br/>
126126
Add the following code to the _modules/storage/storage.tf_ file, and fill in the _Bucket Name_:
127127
```
128128
resource "google_storage_bucket" "storage-bucket" {
@@ -162,7 +162,7 @@ Run the following to initialize the remote backend. Type _yes_ at the prompt.
162162
```
163163
terraform init
164164
```
165-
**TASK 3: Modify and update infrastructure** <br/>
165+
<br/> ** TASK 3: Modify and update infrastructure ** <br/>
166166
Navigate to _modules/instances/instance.tf_. Replace the entire contents of the file with the following, and fill in your _Instance 3 ID_:
167167
```
168168
resource "google_compute_instance" "tf-instance-1" {
@@ -254,7 +254,7 @@ Run the following commands to apply the changes. Type _yes_ at the prompt.
254254
```
255255
terraform apply
256256
```
257-
**TASK 5: Use a module from the Registry** <br/>
257+
<br/> ** TASK 5: Use a module from the Registry ** <br/>
258258
Copy and paste the following to the end of _main.tf_ file, fill in _Version Number_ and _Network Name_ instructed in the challenge:
259259
```
260260
module "vpc" {
@@ -330,7 +330,7 @@ Run the following commands to initialize the module and update the instances. Ty
330330
terraform init
331331
terraform apply
332332
```
333-
** TASK 6: Configure a firewall ** <br/>
333+
<br/> ** TASK 6: Configure a firewall ** <br/>
334334
Add the following resource to the _main.tf_ file, fill in the _GCP Project ID_ and _Network Name_:
335335
```
336336
resource "google_compute_firewall" "tf-firewall" {

0 commit comments

Comments
 (0)