Merge pull request #10491 from zhongwencool/rename-etcd-ssl-to-ssl_options
feat: rename etcd.ssl to etcd.ssl_options
This commit is contained in:
commit
79a235f8b5
|
@ -335,11 +335,12 @@ fields(cluster_etcd) ->
|
||||||
desc => ?DESC(cluster_etcd_node_ttl)
|
desc => ?DESC(cluster_etcd_node_ttl)
|
||||||
}
|
}
|
||||||
)},
|
)},
|
||||||
{"ssl",
|
{"ssl_options",
|
||||||
sc(
|
sc(
|
||||||
?R_REF(emqx_schema, "ssl_client_opts"),
|
?R_REF(emqx_schema, "ssl_client_opts"),
|
||||||
#{
|
#{
|
||||||
desc => ?DESC(cluster_etcd_ssl),
|
desc => ?DESC(cluster_etcd_ssl),
|
||||||
|
alias => [ssl],
|
||||||
'readOnly' => true
|
'readOnly' => true
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Rename `etcd.ssl` to `etcd.ssl_options` to keep all of SSL options consistent in the configuration file.
|
Loading…
Reference in New Issue