You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/manage-instances-with-terraform-and-functions/index.mdx
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ This tutorial will simulate a project with a production environment running all
38
38
```
39
39
2. Create five files to configure your infrastructure:
40
40
-`main.tf`: will contain the main set of configurations for your project. Here, it will be our Instance
41
-
-`provider.tf`: Terraform relies on plugins called “[providers](https://www.terraform.io/language/providers)” to interact with remote systems
41
+
-`provider.tf`: Terraform relies on plugins called "[providers](https://www.terraform.io/language/providers)" to interact with remote systems
42
42
-`backend.tf`: each Terraform configuration can specify a backend, which defines where the state file of the current infrastructure will be stored. Terraform uses this file to keep track of the managed resources. This state can be stored locally or remotely. Configuring a remote backend allows multiple people to work on the same infrastructure
43
43
-`variables.tf`: will contain the variable definitions for your project. Since all Terraform values must be defined, any variables that are not given a default value will become required arguments
44
44
-`terraform.tfvars`: allows you to set the actual value of the variables
0 commit comments