File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
19
19
invalid_targets = attribute (
20
20
'invalid_targets' ,
21
- default : [
21
+ value : [
22
22
'127.0.0.1' ,
23
23
'0.0.0.0' ,
24
24
'::1' ,
30
30
# Array of TCP ports to exclude from SSL checking. For example: [443, 8443]
31
31
exclude_ports = attribute (
32
32
'exclude_ports' ,
33
- default : [ ] ,
33
+ value : [ ] ,
34
34
description : 'Array of TCP ports to exclude from SSL checking'
35
35
)
36
36
37
37
target_hostname = attribute (
38
38
'target_hostname' ,
39
- default : command ( 'hostname' ) . stdout . strip ,
39
+ value : command ( 'hostname' ) . stdout . strip ,
40
40
description : 'Target hostname to check'
41
41
)
42
42
43
43
force_ssl = attribute (
44
44
'force_ssl' ,
45
- default : false ,
45
+ value : false ,
46
46
description : 'The profile should not check if SSL is enabled on every port and assume it is'
47
47
)
48
48
You can’t perform that action at this time.
0 commit comments