Skip to content

Commit

Permalink
GCLOUD2-13858: Update LB Listener docs (#98)
Browse files Browse the repository at this point in the history
* Update docs

* Update docs

* Include allowed cidrs in lb listener request/response

* Include allowed cidrs in lb listener request/response

* Allow updating listener's allowed cidrs

* Allow updating listener's user list

* Update lblistener docs

* Update lblistener docs

* Update lblistener docs
  • Loading branch information
lapson97 authored Apr 8, 2024
1 parent 60f918e commit 06bc3cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion docs/data-sources/lblistener.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,19 @@ output "view" {

### Optional

- `allowed_cidrs` (List of String) List of networks from which listener is accessible
- `connection_limit` (Number) Number of simultaneous connections for this listener, between 1 and 1,000,000.
- `loadbalancer_id` (String) ID of the load balancer to which listener was attached.
- `project_id` (Number) ID of the project in which load balancer listener was created.
- `project_name` (String) Name of the project in which load balancer listener was created.
- `region_id` (Number) ID of the region in which load balancer listener was created.
- `region_name` (String) Name of the region in which load balancer listener was created.
- `secret_id` (String) Secret ID to use with 'TERMINATED_HTTPS' protocol.
- `sni_secret_id` (List of String) List of additional Secret IDs to use with 'TERMINATED_HTTPS' protocol.
- `timeout_client_data` (Number) Frontend client inactivity timeout in milliseconds.
- `timeout_member_connect` (Number) Backend member connection timeout in milliseconds.
- `timeout_member_data` (Number) Backend member inactivity timeout in milliseconds.
- `user_list` (Block List) Listener list of username and encrypted password items. (see [below for nested schema](#nestedblock--user_list))
- `user_list` (Block List) Load balancer listener list of username and encrypted password items. (see [below for nested schema](#nestedblock--user_list))

### Read-Only

Expand Down
4 changes: 2 additions & 2 deletions docs/resources/dns_zone_record.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "gcore_dns_zone_record" "example_rrset0" {
zone = gcore_dns_zone.examplezone0.name
domain = "${gcore_dns_zone.examplezone0.name}"
type = "A"
ttl = 100
ttl = 120
resource_record {
content = "127.0.0.100"
Expand All @@ -51,7 +51,7 @@ resource "gcore_dns_zone_record" "subdomain_examplezone" {
zone = "examplezone.com"
domain = "subdomain.examplezone.com"
type = "TXT"
ttl = 10
ttl = 120
filter {
type = "geodistance"
Expand Down
3 changes: 2 additions & 1 deletion docs/resources/lblistener.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ output "prometheus_password" {

### Optional

- `allowed_cidrs` (List of String) List of networks from which listener is accessible
- `connection_limit` (Number) Number of simultaneous connections for this listener, between 1 and 1,000,000.
- `insert_x_forwarded` (Boolean) Insert X-Forwarded headers for 'HTTP', 'HTTPS', 'TERMINATED_HTTPS' protocols.
- `project_id` (Number) ID of the desired project to create load balancer listener in. Alternative for `project_name`. One of them should be specified.
Expand All @@ -107,7 +108,7 @@ output "prometheus_password" {
- `timeout_member_connect` (Number) Backend member connection timeout in milliseconds.
- `timeout_member_data` (Number) Backend member inactivity timeout in milliseconds.
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
- `user_list` (Block List) Listener list of username and encrypted password items. (see [below for nested schema](#nestedblock--user_list))
- `user_list` (Block List) Load balancer listener list of username and encrypted password items. (see [below for nested schema](#nestedblock--user_list))

### Read-Only

Expand Down

0 comments on commit 06bc3cc

Please sign in to comment.