Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lb secret manger support #3872

Merged
merged 2 commits into from
Aug 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion website/docs/d/is_lb_listener.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ In addition to all argument references listed, you can access the following attr
- `accept_proxy_protocol` - (Boolean) If set to `true`, this listener will accept and forward PROXY protocol information. Supported by load balancers in the `application` family (otherwise always `false`). Additional restrictions:- If this listener has `https_redirect` specified, its `accept_proxy_protocol` value must match the `accept_proxy_protocol` value of the `https_redirect` listener.- If this listener is the target of another listener's `https_redirect`, its `accept_proxy_protocol` value must match that listener's `accept_proxy_protocol` value.

- `certificate_instance` - (List) The certificate instance used for SSL termination. It is applicable only to `https`protocol.
Nested scheme for `certificate_instance`:
Nested scheme for `certificate_instance`:
- `crn` - (String) The CRN for this certificate instance.

-> **NOTE:** Certificate Manager is deprecated. Migrate your load balancer certificates from Certificate Manager to Secrets Manager.

- `connection_limit` - (Integer) The connection limit of the listener.

- `created_at` - (String) The date and time that this listener was created.
Expand Down
3 changes: 3 additions & 0 deletions website/docs/d/is_lb_listeners.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ In addition to all argument references listed, you can access the following attr
- `certificate_instance` - (List) The certificate instance used for SSL termination. It is applicable only to `https`protocol.
Nested scheme for `certificate_instance`:
- `crn` - (String) The CRN for this certificate instance.

-> **NOTE:** Certificate Manager is deprecated. Migrate your load balancer certificates from Certificate Manager to Secrets Manager.

- `connection_limit` - (Integer) The connection limit of the listener.
- `created_at` - (String) The date and time that this listener was created.
- `default_pool` - (List) The default pool associated with the listener.
Expand Down
3 changes: 3 additions & 0 deletions website/docs/r/is_lb_listener.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ Review the argument references that you can specify for your resource.
- Have the same protocol as this listener, or have a compatible protocol. At present, the compatible protocols are http and https.
- Not already be the default_pool for another listener
- `certificate_instance` - (Optional, String) The CRN of the certificate instance, it is applicable(mandatory) only to https protocol.

-> **NOTE:** Certificate Manager is deprecated. Migrate your load balancer certificates from Certificate Manager to Secrets Manager.

- `connection_limit` - (Optional, Integer) The connection limit of the listener. Valid range is **1 to 15000**. Network load balancer do not support `connection_limit` argument.
- `https_redirect_listener` - (Optional, String) ID of the listener that will be set as http redirect target.
- `https_redirect_status_code` - (Optional, Integer) The HTTP status code to be returned in the redirect response, one of [301, 302, 303, 307, 308].
Expand Down