Compare commits

..

3 commits

Author SHA1 Message Date
Micke Nordin 01fc5a9e86 Merge branch 'main' into testing 2024-04-29 16:35:35 +02:00
Micke Nordin bd074c73d5 Fix syntax 2024-04-29 16:34:38 +02:00
Micke Nordin d33f80273d Fix syntax 2024-04-29 16:30:18 +02:00

View file

@ -231,7 +231,11 @@ MACAddressPolicy=none'
$trusted_proxies = ['lb1.drive.sunet.se','lb2.drive.sunet.se', 'lb3.drive.sunet.se', 'lb4.drive.sunet.se']
} else {
$s3_bucket = pick($customer_config["primary_bucket"],"primary-${customer}-${environment}.sunet.se")
if 'primary_bucket' in $customer_config.keys() {
$s3_bucket = $customer_config['primary_bucket']
} else {
$s3_bucket = "primary-${customer}-${environment}.sunet.se"
}
$site_name = "${customer}.drive.${environment}.sunet.se"
$trusted_proxies = ["lb1.drive.${environment}.sunet.se","lb2.drive.${environment}.sunet.se",
"lb3.drive.${environment}.sunet.se","lb4.drive.${environment}.sunet.se"]