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
description = "The name of the cloudfoundry org connected to the project account."
78
78
}
79
79
```
80
-
### Step 4: Apply the changes
80
+
81
+
### Step 4: Adjust the provider configuration
82
+
83
+
As we are using an additional provider we must make Terraform aware of this in the `provider.tf` file. Open the `provider.tf` file and add the following code to the `required_provider` block:
84
+
85
+
```terraform
86
+
cloudfoundry = {
87
+
source = "cloudfoundry/cloudfoundry"
88
+
version = "1.2.0"
89
+
}
90
+
```
91
+
92
+
To configure the Cloud Foundry provider add the following lines at the end of the file:
0 commit comments