-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from dios-david/add-php-source
* chore: fix cio datacentre issue * adding php source * generate docs --------- Co-authored-by: Yashasvi Bajpai <[email protected]>
- Loading branch information
Showing
8 changed files
with
206 additions
and
140 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
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,37 @@ | ||
--- | ||
page_title: "rudderstack_source_php Resource - terraform-provider-rudderstack" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# rudderstack_source_php (Resource) | ||
|
||
This resource represents a PHP event stream source. For more information check | ||
https://www.rudderstack.com/docs/sources/event-streams/sdks/rudderstack-php-sdk/ | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "rudderstack_source_php" "example" { | ||
name = "example-php" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) Human readable name of the source. The value has to be unique across all sources. | ||
|
||
### Optional | ||
|
||
- `enabled` (Boolean) An enabled source allows data to be read from it. For event stream sources this controls wether events can be sent to that source by various SDKs. | ||
|
||
### Read-Only | ||
|
||
- `created_at` (String) Time when the resource was created, in ISO 8601 format. | ||
- `id` (String) The ID of this resource. | ||
- `updated_at` (String) Time when the resource was last updated, in ISO 8601 format. | ||
- `write_key` (String) The write key that identifies the source in RudderStack data plane. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
resource "rudderstack_source_php" "example" { | ||
name = "example-php" | ||
} |
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
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,17 @@ | ||
--- | ||
page_title: "rudderstack_source_php Resource - terraform-provider-rudderstack" | ||
subcategory: "" | ||
description: |- | ||
|
||
--- | ||
|
||
# rudderstack_source_php (Resource) | ||
|
||
This resource represents a PHP event stream source. For more information check | ||
https://www.rudderstack.com/docs/sources/event-streams/sdks/rudderstack-php-sdk/ | ||
|
||
## Example Usage | ||
|
||
{{tffile "examples/source_php.tf"}} | ||
|
||
{{ .SchemaMarkdown | trimspace }} |