Skip to content

Commit 0739e91

Browse files
authored
docs: Add data source examples (#90)
* docs: Add data source examples * docs: Generate
1 parent c896425 commit 0739e91

File tree

6 files changed

+27
-0
lines changed

6 files changed

+27
-0
lines changed

docs/data-sources/connection.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ description: |-
1010

1111
Connection Data Source
1212

13+
## Example Usage
1314

15+
```terraform
16+
data "hookdeck_connection" "example" {
17+
id = "<your_connection_id>"
18+
}
19+
```
1420

1521
<!-- schema generated by tfplugindocs -->
1622
## Schema

docs/data-sources/destination.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ description: |-
1010

1111
Destination Data Source
1212

13+
## Example Usage
1314

15+
```terraform
16+
data "hookdeck_destination" "example" {
17+
id = "<your_destination_id>"
18+
}
19+
```
1420

1521
<!-- schema generated by tfplugindocs -->
1622
## Schema

docs/data-sources/source.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ description: |-
1010

1111
Source Data Source
1212

13+
## Example Usage
1314

15+
```terraform
16+
data "hookdeck_source" "example" {
17+
id = "<your_source_id>"
18+
}
19+
```
1420

1521
<!-- schema generated by tfplugindocs -->
1622
## Schema
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
data "hookdeck_connection" "example" {
2+
id = "<your_connection_id>"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
data "hookdeck_destination" "example" {
2+
id = "<your_destination_id>"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
data "hookdeck_source" "example" {
2+
id = "<your_source_id>"
3+
}

0 commit comments

Comments
 (0)