bstopp/puppet-aem

View on GitHub
examples/replication/flush/relaxed-ssl.pp

Summary

Maintainability
Test Coverage
# Relaxed SSL Flush Replication Agent Example

# This example creates a Flush replication agent which will allow an "invalid" (self-signed) certs on the remote system.

aem::agent::replication::flush { 'Flush Agent' :
  home                 => '/opt/aem',
  name                 => 'flush',
  password             => 'admin',
  runmode              => 'author',
  trans_allow_exp_cert => true,
  trans_password       => 'admin',
  trans_ssl            => 'relaxed',
  trans_uri            => 'http://localhost:80/dispatcher/invalidate.cache',
  trans_user           => 'admin',
  username             => 'admin',
}