-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update client id and secret desc (#48)
* Update client id and secret desc * Update docs * Generate docs * Generate docs
- Loading branch information
Showing
21 changed files
with
152 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,5 +58,9 @@ lint: | |
tools: | ||
go install github.com/bflad/tfproviderlint/cmd/[email protected] | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] | ||
go install github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs | ||
|
||
docs: | ||
tfplugindocs | ||
|
||
.PHONY: build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,5 +53,3 @@ Read-Only: | |
Read-Only: | ||
|
||
- `project_id` (String) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,5 +34,3 @@ Read-Only: | |
|
||
- `cidr` (String) | ||
- `id` (String) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,5 +67,3 @@ Read-Only: | |
|
||
- `kafka` (Map of String) | ||
- `mqtt` (Map of String) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,37 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "streamnative Provider" | ||
subcategory: "" | ||
layout: "" | ||
page_title: "Provider: StreamNative Cloud" | ||
description: |- | ||
The Datadog provider allows you to interact with the Datadog API. | ||
--- | ||
|
||
# streamnative Provider | ||
# StreamNative Cloud Provider | ||
|
||
Use the StreamNative Cloud provider to interact with the many resources supported by StreamNative Cloud. You must configure the provider with the proper credentials before you can use it. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
terraform { | ||
required_providers { | ||
streamnative = { | ||
version = "0.4.0" | ||
source = "streamnative/streamnative" | ||
} | ||
} | ||
} | ||
provider "streamnative" { | ||
# Please replace path use your own key file path | ||
key_file_path = "<your-key-file-path>" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `key_file_path` (String) The path of the private key file | ||
- `client_id` (String) Client ID of the service account, you can set it to 'GLOBAL_DEFAULT_CLIENT_ID' environment variable | ||
- `client_secret` (String) Client Secret of the service account, you can set it to 'GLOBAL_DEFAULT_CLIENT_SECRET' environment variable | ||
- `key_file_path` (String) The path of the private key file, you can set it to 'KEY_FILE_PATH' environment variable, find it in the cloud console under the service account with admin permission |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,5 +56,3 @@ Optional: | |
Optional: | ||
|
||
- `project_id` (String) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,5 +51,3 @@ Optional: | |
|
||
- `create` (String) | ||
- `delete` (String) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,3 @@ description: |- | |
|
||
- `id` (String) The ID of this resource. | ||
- `private_key_data` (String) The private key data | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
terraform { | ||
required_providers { | ||
streamnative = { | ||
source = "streamnative/streamnative" | ||
} | ||
} | ||
} | ||
|
||
provider "streamnative" { | ||
# Please replace path use your own key file path | ||
key_file_path = "<your-key-file-path>" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.