Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc(provider): [auto] updated example #3

Merged
merged 1 commit into from
Feb 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ The provider can be configured using the environment variables DVLS_APP_ID and D

```terraform
provider "dvls" {
baseuri = "https://your-dvls-instance.com/"
appid = "00000000-0000-0000-0000-000000000000"
secret = "your-sensitive-secret"
base_uri = "https://your-dvls-instance.com/"
app_id = "00000000-0000-0000-0000-000000000000"
app_secret = "your-sensitive-secret"
}
```

Expand All @@ -30,4 +30,4 @@ provider "dvls" {
### Optional

- `app_id` (String) DVLS App ID `$DVLS_APP_ID`
- `secret` (String, Sensitive) DVLS App Secret `$DVLS_APP_SECRET`
- `app_secret` (String, Sensitive) DVLS App Secret `$DVLS_APP_SECRET`
6 changes: 3 additions & 3 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "dvls" {
baseuri = "https://your-dvls-instance.com/"
appid = "00000000-0000-0000-0000-000000000000"
secret = "your-sensitive-secret"
base_uri = "https://your-dvls-instance.com/"
app_id = "00000000-0000-0000-0000-000000000000"
app_secret = "your-sensitive-secret"
}