diff --git a/website/source/docs/providers/profitbricks/index.html.markdown b/website/source/docs/providers/profitbricks/index.html.markdown index 59106bb1f..0d7dae3a4 100644 --- a/website/source/docs/providers/profitbricks/index.html.markdown +++ b/website/source/docs/providers/profitbricks/index.html.markdown @@ -21,6 +21,7 @@ The provider needs to be configured with proper credentials before it can be use ``` $ export PROFITBRICKS_USERNAME="profitbricks_username" $ export PROFITBRICKS_PASSWORD="profitbricks_password" +$ export PROFITBRICKS_API_URL="profitbricks_rest_url" ``` Or you can provide your credentials like this: @@ -35,6 +36,7 @@ The credentials provided in `.tf` file will override credentials in the environm provider "profitbricks" { username = "profitbricks_username" password = "profitbricks_password" + endpoint = "profitbricks_rest_url" retries = 100 } @@ -53,6 +55,8 @@ The following arguments are supported: * `password` - (Required) If omitted, the `PROFITBRICKS_PASSWORD` environment variable is used. +* `endpoint` - (Required) If omitted, the `PROFITBRICKS_API_URL` environment variable is used. + * `retries` - (Optional) Number of retries while waiting for a resource to be provisioned. Default value is 50.