This commit is contained in:
Johan Björklund 2024-11-20 13:31:52 +01:00
parent 7da9390800
commit 40d6b0b814
Signed by untrusted user: bjorklund
GPG key ID: 5E8401339C7F5037
2 changed files with 14 additions and 14 deletions

View file

@ -33,7 +33,7 @@ intelmq-dev.cert.sunet.se:
soc::intelmq: soc::intelmq:
use_snakeoil: true use_snakeoil: true
soc::sso: soc::sso:
hostname: 'intelmq-dev.cert.sunet.se' ssotype: 'apache'
groups: groups:
- 'sunet-cert' - 'sunet-cert'
satosa: true satosa: true

View file

@ -31,19 +31,19 @@
# Default set to value of proxy. # Default set to value of proxy.
class soc::sso( class soc::sso(
String $ssotype = "docker", String $ssotype = "docker",
String $hostname = undef, Optional[String] $hostname = undef,
String $email = "cert@cert.sunet.se", String $email = "cert@cert.sunet.se",
String $service_endpoint = undef, Optional[String] $service_endpoint = undef,
Array $groups = ['PLACEHOLDER'], Array $groups = ['PLACEHOLDER'],
Array $passthrough = [], Array $passthrough = [],
Boolean $x_remote_user = false, Boolean $x_remote_user = false,
Boolean $single_user = false, Boolean $single_user = false,
Boolean $satosa = true, Boolean $satosa = true,
Boolean $satosa_certbot = false, Boolean $satosa_certbot = false,
String $translog = 'INFO', String $translog = 'INFO',
String $proxy = 'https://shared-sso-proxy1.cert.sunet.se/idp', String $proxy = 'https://shared-sso-proxy1.cert.sunet.se/idp',
String $entityID = $proxy, String $entityID = $proxy,
) { ) {
if $ssotype == "docker" { if $ssotype == "docker" {