Skip to content

Commit

Permalink
Rename paths to include full names
Browse files Browse the repository at this point in the history
Not including the full name prevents the examples from displaying in the registry
  • Loading branch information
aaronblevy committed Jan 11, 2024
1 parent 8c5c314 commit f4aae57
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/resources/service.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ A Service is a TimescaleDB instance.
Please note that when updating the vpc_id attribute, it is possible to encounter a "no Endpoint for that service id exists" error.
The change has been taken into account but must still be propagated. You can run "terraform refresh" shortly to get the updated data.


## Example Usage

```terraform
resource "timescale_service" "test" {
# name = ""
# milli_cpu = 1000
# memory_gb = 4
# region_code = ""
}
# Read replica
resource "timescale_service" "read_replica" {
read_replica_source = timescale_service.test.id
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f4aae57

Please sign in to comment.