forked from juju-solutions/layer-tls-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayer.yaml
More file actions
38 lines (38 loc) · 1.28 KB
/
layer.yaml
File metadata and controls
38 lines (38 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
repo: https://github.com/juju-solutions/layer-tls-client.git
includes:
- 'layer:basic'
- 'layer:debug'
- 'interface:tls-certificates'
defines:
ca_certificate_path:
type: string
default: ''
description: The absolute path to save the Certificate Authority (CA) file.
server_certificate_path:
type: string
default: ''
description: |
The absolute path to save the server certificate file.
This is deprecated in favor of calling `layer.tls_client.request_server_cert`
and passing the paths in to that.
server_key_path:
type: string
default: ''
description: |
The absolute path to save the server key file.
This is deprecated in favor of calling `layer.tls_client.request_server_cert`
and passing the paths in to that.
client_certificate_path:
type: string
default: ''
description: |
The absolute path to save the client certificiate file.
This is deprecated in favor of calling `layer.tls_client.request_client_cert`
and passing the paths in to that.
client_key_path:
type: string
default: ''
description: |
The absolute path to save the client key file.
This is deprecated in favor of calling `layer.tls_client.request_client_cert`
and passing the paths in to that.