use of com.netflix.spinnaker.halyard.config.model.v1.security.ApacheSsl in project halyard by spinnaker.
the class ApachePassphraseProfileFactory method getBindings.
@Override
protected Map<String, Object> getBindings(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
Map<String, Object> bindings = new HashMap<>();
ApacheSsl ssl = deploymentConfiguration.getSecurity().getUiSecurity().getSsl();
bindings.put("passphrase", ssl.getSslCertificatePassphrase());
return bindings;
}
Aggregations