Skip to content

Commit

Permalink
chore: add link to regions to the docs.
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Kisler <admin@dkisler.com>
  • Loading branch information
kislerdm committed Jan 11, 2024
1 parent b879ccc commit be055f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/resources/endpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Specify the k8s-neonvm provisioner to create a compute endpoint that supports Au
See details: https://neon.tech/docs/connect/connection-pooling
- `pooler_mode` (String) Mode of connections pooling.
See details: https://neon.tech/docs/connect/connection-pooling
- `region_id` (String) AWS Region.
- `region_id` (String) Deployment region: https://neon.tech/docs/introduction/regions
- `suspend_timeout_seconds` (Number) Duration of inactivity in seconds after which the compute endpoint is automatically suspended.
The value 0 means use the global default.
The value -1 means never suspend. The default value is 300 seconds (5 minutes).
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Logical size is also an exception in this case, as it represents the total size
of data stored in a branch, so it is not reset.

The zero value per attributed means 'unlimited'. (see [below for nested schema](#nestedblock--quota))
- `region_id` (String) AWS Region.
- `region_id` (String) Deployment region: https://neon.tech/docs/introduction/regions
- `store_password` (Boolean) Whether or not passwords are stored for roles in the Neon project. Storing passwords facilitates access to Neon features that require authorization.

### Read-Only
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var schemaRegionID = &schema.Schema{
Optional: true,
Computed: true,
ForceNew: true,
Description: "AWS Region.",
Description: "Deployment region: https://neon.tech/docs/introduction/regions",
}

type t interface {
Expand Down

0 comments on commit be055f8

Please sign in to comment.