
The option should be set appropriately to use signed url feature. Change-Id: Ica173a668c69d007a3c73a9d0fdc8154d1f75a06
21 lines
320 B
Puppet
21 lines
320 B
Puppet
# == Class: zaqar::signed_url
|
|
#
|
|
# Configure signed_url options
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*secret_key*]
|
|
# (Required) Secret key used to encrypt pre-signed URLs.
|
|
#
|
|
class zaqar::signed_url(
|
|
$secret_key,
|
|
) {
|
|
|
|
include zaqar::deps
|
|
|
|
zaqar_config {
|
|
'signed_url/secret_key': value => $secret_key, secret => true;
|
|
}
|
|
|
|
}
|