File tree 4 files changed +58
-0
lines changed
4 files changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -218,6 +218,7 @@ The following parameters are available in the `icingaweb2` class:
218
218
* [ ` conf_group ` ] ( #-icingaweb2--conf_group )
219
219
* [ ` default_domain ` ] ( #-icingaweb2--default_domain )
220
220
* [ ` cookie_path ` ] ( #-icingaweb2--cookie_path )
221
+ * [ ` use_strict_csp ` ] ( #-icingaweb2--use_strict_csp )
221
222
* [ ` admin_role ` ] ( #-icingaweb2--admin_role )
222
223
* [ ` default_admin_username ` ] ( #-icingaweb2--default_admin_username )
223
224
* [ ` default_admin_password ` ] ( #-icingaweb2--default_admin_password )
@@ -476,6 +477,14 @@ Path to where cookies are stored.
476
477
477
478
Default value: ` undef `
478
479
480
+ ##### <a name =" -icingaweb2--use_strict_csp " ></a >` use_strict_csp `
481
+
482
+ Data type: ` Optional[Boolean] `
483
+
484
+ Enable the inclusion of Content Security Policy (CSP) headers in application responses.
485
+
486
+ Default value: ` undef `
487
+
479
488
##### <a name =" -icingaweb2--admin_role " ></a >` admin_role `
480
489
481
490
Data type: ` Variant[Icingaweb2::AdminRole, Boolean[false]] `
Original file line number Diff line number Diff line change 21
21
22
22
$cookie_path = $icingaweb2::cookie_path
23
23
24
+ $use_strict_csp = $icingaweb2::use_strict_csp
25
+
24
26
$resources = $icingaweb2::resources
25
27
$default_auth_backend = $icingaweb2::default_auth_backend
26
28
$user_backends = $icingaweb2::user_backends
103
105
}
104
106
}
105
107
108
+ if $use_strict_csp =~ NotUndef {
109
+ icingaweb2::inisection { 'config-security' :
110
+ section_name => ' security' ,
111
+ target => " ${conf_dir} /config.ini" ,
112
+ settings => {
113
+ ' use_strict_csp' => $use_strict_csp ,
114
+ },
115
+ }
116
+ }
117
+
106
118
# Additional resources
107
119
$resources .each |String $res , Hash $cfg | {
108
120
case $cfg [' type' ] {
Original file line number Diff line number Diff line change 110
110
# @param cookie_path
111
111
# Path to where cookies are stored.
112
112
#
113
+ # @param use_strict_csp
114
+ # Enable the inclusion of Content Security Policy (CSP) headers in application responses.
115
+ #
113
116
# @param admin_role
114
117
# Manage a role for admin access.
115
118
#
255
258
Optional[Array[String[1]]] $extra_packages = undef ,
256
259
Optional[String[1]] $default_domain = undef ,
257
260
Optional[Stdlib::Absolutepath] $cookie_path = undef ,
261
+ Optional[Boolean] $use_strict_csp = undef ,
258
262
) {
259
263
require icingaweb2::globals
260
264
Original file line number Diff line number Diff line change 68
68
)
69
69
}
70
70
it { is_expected . not_to contain_icingaweb2__inisection ( 'config-authentication' ) }
71
+ it { is_expected . not_to contain_icingaweb2__inisection ( 'config-security' ) }
71
72
it { is_expected . not_to contain_icingaweb2__inisection ( 'config-cookie' ) }
72
73
it {
73
74
is_expected . to contain_icingaweb2__resource__database ( 'icingaweb2' )
120
121
}
121
122
end
122
123
124
+ context "#{ os } with use_strict_csp 'true'" do
125
+ let ( :params ) do
126
+ {
127
+ use_strict_csp : true ,
128
+ db_type : 'mysql' ,
129
+ }
130
+ end
131
+
132
+ it {
133
+ is_expected . to contain_icingaweb2__inisection ( 'config-security' )
134
+ . with_section_name ( 'security' )
135
+ . with_target ( '/etc/icingaweb2/config.ini' )
136
+ . with_settings ( { 'use_strict_csp' => true } )
137
+ }
138
+ end
139
+
140
+ context "#{ os } with use_strict_csp 'false'" do
141
+ let ( :params ) do
142
+ {
143
+ use_strict_csp : false ,
144
+ db_type : 'mysql' ,
145
+ }
146
+ end
147
+
148
+ it {
149
+ is_expected . to contain_icingaweb2__inisection ( 'config-security' )
150
+ . with_section_name ( 'security' )
151
+ . with_target ( '/etc/icingaweb2/config.ini' )
152
+ . with_settings ( { 'use_strict_csp' => false } )
153
+ }
154
+ end
155
+
123
156
context "#{ os } with default_auth_backend 'false', additional resources, user and group backend" do
124
157
let ( :params ) do
125
158
{
You can’t perform that action at this time.
0 commit comments