Skip to content

Commit b844b84

Browse files
Apply suggestions from code review
Co-authored-by: ldecarvalho-doc <[email protected]>
1 parent 260c4b6 commit b844b84

File tree

1 file changed

+7
-7
lines changed
  • tutorials/how-to-setup-applesilicon-server-with-terraform

1 file changed

+7
-7
lines changed

tutorials/how-to-setup-applesilicon-server-with-terraform/index.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@ Both Terraform and OpenTofu offer the same core functionality for provisioning a
3333

3434
1. Download and install [Terraform](https://developer.hashicorp.com/terraform/install).
3535

36-
2. Create a directory: First, create a directory for your Terraform project. Open your terminal and run:
36+
2. Create a directory for your Terraform project. Open your terminal and run the following command:
3737

3838
```shell
3939
mkdir apple_silicon_server_terraform
4040
cd apple_silicon_server_terraform
4141
```
4242

43-
3. Create a Terraform configuration file: Inside this directory, create a file named `resources.tf`:
43+
3. Create a Terraform configuration file. Inside the directory, create a file named `resources.tf`:
4444

4545
```shell
4646
touch resources.tf
4747
```
4848

49-
4. Define the required providers: Open the `resources.tf` file and add the following configuration to define the Scaleway provider and set the required Terraform version:
49+
4. Define the required providers. Open the `resources.tf` file and add the following configuration to define the Scaleway provider and set the required Terraform version:
5050

5151
```shell
5252
terraform {
@@ -60,7 +60,7 @@ terraform {
6060

6161
```
6262

63-
5. Define the Apple silicon server: Add the following code to define your Apple silicon server (M2-M type) in the same `resources.tf` file:
63+
5. Define the Apple silicon server. Add the following code to define your Apple silicon server (M2-M type) in the same `resources.tf` file:
6464

6565
```terraform
6666
#resources.tf
@@ -71,7 +71,7 @@ resource "scaleway_apple_silicon_server" "server" {
7171
}
7272
```
7373

74-
6. Apply the configuration: To apply this configuration, run the following commands in your terminal:
74+
6. Run the following commands in your terminal to apply the configuration:
7575

7676
```shell
7777
#Initialize Terraform
@@ -84,7 +84,7 @@ terraform apply
8484

8585
When prompted, type **yes** to confirm the creation of the resources.
8686

87-
7. Enable Virtual Private Cloud (VPC) and a Private Network: To enhance the network setup, you can update the configuration to enable the VPC option and attach a Private Network to your Apple silicon server. Update your `resources.tf` file with the following:
87+
7. Enable Virtual Private Cloud (VPC) and a Private Network. To enhance the network setup, you can update the configuration to enable the VPC option and attach a Private Network to your Apple silicon server. Update your `resources.tf` file with the following:
8888

8989
```terraform
9090
#resources.tf
@@ -107,7 +107,7 @@ resource "scaleway_apple_silicon_server" "server" {
107107
}
108108
}
109109
```
110-
8. Apply the configuration update: Run the following command to apply the changes and update the server configuration:
110+
8. Run the following command to apply the changes and update the server configuration:
111111

112112
```shell
113113
terraform apply

0 commit comments

Comments
 (0)