Skip to content

Commit 8536620

Browse files
authored
fix: Clarify explanation for ssl_certificates (#128)
1 parent ad92b2e commit 8536620

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Current version is 3.0. Upgrade guides:
117117
| quic | Set to `true` to enable QUIC support | bool | `"false"` | no |
118118
| security\_policy | The resource URL for the security policy to associate with the backend service | string | `"null"` | no |
119119
| ssl | Set to `true` to enable SSL support, requires variable `ssl_certificates` - a list of self_link certs | bool | `"false"` | no |
120-
| ssl\_certificates | SSL cert self_link list. Required if `ssl` is `true` and no `private_key` and `certificate` is provided. | list(string) | `<list>` | no |
120+
| ssl\_certificates | SSL cert self_link list. Required if `ssl` is `true` and `use_ssl_certificates` is `true`. | list(string) | `<list>` | no |
121121
| ssl\_policy | Selfink to SSL Policy | string | `"null"` | no |
122122
| target\_service\_accounts | List of target service accounts for health check firewall rule. Exactly one of target_tags or target_service_accounts should be specified. | list(string) | `<list>` | no |
123123
| target\_tags | List of target tags for health check firewall rule. Exactly one of target_tags or target_service_accounts should be specified. | list(string) | `<list>` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ variable "use_ssl_certificates" {
170170
}
171171

172172
variable "ssl_certificates" {
173-
description = "SSL cert self_link list. Required if `ssl` is `true` and no `private_key` and `certificate` is provided."
173+
description = "SSL cert self_link list. Required if `ssl` is `true` and `use_ssl_certificates` is `true`."
174174
type = list(string)
175175
default = []
176176
}

0 commit comments

Comments
 (0)