diff --git a/docs/resources/endpoint.md b/docs/resources/endpoint.md index b08fa79..1302950 100644 --- a/docs/resources/endpoint.md +++ b/docs/resources/endpoint.md @@ -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). diff --git a/docs/resources/project.md b/docs/resources/project.md index ccf20e8..9b2fabe 100644 --- a/docs/resources/project.md +++ b/docs/resources/project.md @@ -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 diff --git a/internal/provider/helper.go b/internal/provider/helper.go index 98ecf24..e1b97ae 100644 --- a/internal/provider/helper.go +++ b/internal/provider/helper.go @@ -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 {