# # Configure Swift Container Sync # # == Parameters # # [*allow_full_urls*] # (Optional) Allow full URL values to be set for new X-Container-Sync-To # headers. # Defaults to $::os_service_default # # [*current*] # (Optional) Set this to specify this clusters //realm/cluster as "current" in # /info. # Defaults to $::os_service_default # # == Authors # # Denis Egorenko # class swift::proxy::container_sync( $allow_full_urls = $::os_service_default, $current = $::os_service_default, ) { include swift::deps swift_proxy_config { 'filter:container_sync/use': value => 'egg:swift#container_sync'; 'filter:container_sync/allow_full_urls': value => $allow_full_urls; 'filter:container_sync/current': value => $current; } }