provider/fastly: fix the description for "weight" on fastly_service_v1. (#6261)
This description is essentially copied from the Fastly dashboard.
This commit is contained in:
parent
3f942192ab
commit
22c3db5c80
|
@ -147,7 +147,7 @@ func resourceServiceV1() *schema.Resource {
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Default: 100,
|
Default: 100,
|
||||||
Description: "How long to wait for the first bytes in milliseconds",
|
Description: "The portion of traffic to send to a specific origins. Each origin receives weight/total of the traffic.",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -131,8 +131,7 @@ Default `1000`
|
||||||
Default `200`
|
Default `200`
|
||||||
* `port` - (Optional) The port number Backend responds on. Default `80`
|
* `port` - (Optional) The port number Backend responds on. Default `80`
|
||||||
* `ssl_check_cert` - (Optional) Be strict on checking SSL certs. Default `true`
|
* `ssl_check_cert` - (Optional) Be strict on checking SSL certs. Default `true`
|
||||||
* `weight` - (Optional) How long to wait for the first bytes in milliseconds.
|
* `weight` - (Optional) The [portion of traffic](https://docs.fastly.com/guides/performance-tuning/load-balancing-configuration.html#how-weight-affects-load-balancing) to send to this Backend. Each Backend receives `weight / total` of the traffic. Default `100`
|
||||||
Default `100`
|
|
||||||
|
|
||||||
The `gzip` block supports:
|
The `gzip` block supports:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue