mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-27 23:21:31 -07:00
Add note about Postgres requiring user passwords (#3068)
* Add note about Postgres requiring user passwords * Clarify wording. Co-authored-by: Sebastien Williams-Wynn <s.williamswynn.mail@gmail.com> Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
2800cae3ca
commit
7fc495d585
3 changed files with 51 additions and 33 deletions
|
@ -133,8 +133,9 @@ resources:
|
|||
description:
|
||||
- A multiplier applied to the group's maximum servicing capacity (based
|
||||
on UTILIZATION, RATE or CONNECTION).
|
||||
- Default value is 1, which means the group will serve up to 100% of its
|
||||
configured capacity (depending on balancingMode).
|
||||
- "~>**NOTE**: This field cannot be set for INTERNAL region backend services
|
||||
(default loadBalancingScheme), but is required for non-INTERNAL backend
|
||||
service. The total capacity_scaler for all backends must be non-zero."
|
||||
- A setting of 0 means the group is completely drained, offering 0% of its
|
||||
available Capacity. Valid range is [0.0,1.0].
|
||||
returned: success
|
||||
|
@ -167,6 +168,7 @@ resources:
|
|||
description:
|
||||
- The max number of simultaneous connections for the group. Can be used
|
||||
with either CONNECTION or UTILIZATION balancing modes.
|
||||
- Cannot be set for INTERNAL backend services.
|
||||
- For CONNECTION mode, either maxConnections or one of maxConnectionsPerInstance
|
||||
or maxConnectionsPerEndpoint, as appropriate for group type, must be set.
|
||||
returned: success
|
||||
|
@ -174,8 +176,9 @@ resources:
|
|||
maxConnectionsPerInstance:
|
||||
description:
|
||||
- The max number of simultaneous connections that a single backend instance
|
||||
can handle. This is used to calculate the capacity of the group. Can be
|
||||
used in either CONNECTION or UTILIZATION balancing modes.
|
||||
can handle. Cannot be set for INTERNAL backend services.
|
||||
- This is used to calculate the capacity of the group.
|
||||
- Can be used in either CONNECTION or UTILIZATION balancing modes.
|
||||
- For CONNECTION mode, either maxConnections or maxConnectionsPerInstance
|
||||
must be set.
|
||||
returned: success
|
||||
|
@ -183,15 +186,16 @@ resources:
|
|||
maxConnectionsPerEndpoint:
|
||||
description:
|
||||
- The max number of simultaneous connections that a single backend network
|
||||
endpoint can handle. This is used to calculate the capacity of the group.
|
||||
Can be used in either CONNECTION or UTILIZATION balancing modes.
|
||||
- For CONNECTION mode, either maxConnections or maxConnectionsPerEndpoint
|
||||
must be set.
|
||||
endpoint can handle. Cannot be set for INTERNAL backend services.
|
||||
- This is used to calculate the capacity of the group. Can be used in either
|
||||
CONNECTION or UTILIZATION balancing modes. For CONNECTION mode, either
|
||||
maxConnections or maxConnectionsPerEndpoint must be set.
|
||||
returned: success
|
||||
type: int
|
||||
maxRate:
|
||||
description:
|
||||
- The max requests per second (RPS) of the group.
|
||||
- The max requests per second (RPS) of the group. Cannot be set for INTERNAL
|
||||
backend services.
|
||||
- Can be used with either RATE or UTILIZATION balancing modes, but required
|
||||
if RATE mode. Either maxRate or one of maxRatePerInstance or maxRatePerEndpoint,
|
||||
as appropriate for group type, must be set.
|
||||
|
@ -202,7 +206,7 @@ resources:
|
|||
- The max requests per second (RPS) that a single backend instance can handle.
|
||||
This is used to calculate the capacity of the group. Can be used in either
|
||||
balancing mode. For RATE mode, either maxRate or maxRatePerInstance must
|
||||
be set.
|
||||
be set. Cannot be set for INTERNAL backend services.
|
||||
returned: success
|
||||
type: str
|
||||
maxRatePerEndpoint:
|
||||
|
@ -210,13 +214,14 @@ resources:
|
|||
- The max requests per second (RPS) that a single backend network endpoint
|
||||
can handle. This is used to calculate the capacity of the group. Can be
|
||||
used in either balancing mode. For RATE mode, either maxRate or maxRatePerEndpoint
|
||||
must be set.
|
||||
must be set. Cannot be set for INTERNAL backend services.
|
||||
returned: success
|
||||
type: str
|
||||
maxUtilization:
|
||||
description:
|
||||
- Used when balancingMode is UTILIZATION. This ratio defines the CPU utilization
|
||||
target for the group. Valid range is [0.0, 1.0].
|
||||
- Cannot be set for INTERNAL backend services.
|
||||
returned: success
|
||||
type: str
|
||||
connectionDraining:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue