Merge pull request #8637 from jrm16020/jeremy_tls_provider_docs_update
Adding reference to docs for supported ECDSA curves.
This commit is contained in:
commit
7485061635
|
@ -104,7 +104,7 @@ Listeners (`listener`) support the following:
|
|||
* `lb_protocol` - (Required) The protocol to listen on. Valid values are `HTTP`,
|
||||
`HTTPS`, `TCP`, or `SSL`
|
||||
* `ssl_certificate_id` - (Optional) The ARN of an SSL certificate you have
|
||||
uploaded to AWS IAM. **Only valid when `lb_protocol` is either HTTPS or SSL**
|
||||
uploaded to AWS IAM. **Note ECDSA-specific restrictions below. Only valid when `lb_protocol` is either HTTPS or SSL**
|
||||
|
||||
Health Check (`health_check`) supports the following:
|
||||
|
||||
|
@ -117,6 +117,14 @@ Health Check (`health_check`) supports the following:
|
|||
* `interval` - (Required) The interval between checks.
|
||||
* `timeout` - (Required) The length of time before the check times out.
|
||||
|
||||
## Note on ECDSA Key Algorithm
|
||||
|
||||
If the ARN of the `ssl_certificate_id` that is pointed to references a
|
||||
certificate that was signed by an ECDSA key, note that ELB only supports the
|
||||
P256 and P384 curves. Using a certificate signed by a key using a different
|
||||
curve could produce the error `ERR_SSL_VERSION_OR_CIPHER_MISMATCH` in your
|
||||
browser.
|
||||
|
||||
## Attributes Reference
|
||||
|
||||
The following attributes are exported:
|
||||
|
|
Loading…
Reference in New Issue