Puppet Class: swift::container_sync

Defined in:
modules/swift/manifests/container_sync.pp

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:



2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'modules/swift/manifests/container_sync.pp', line 2

class swift::container_sync (
    Hash[String, Hash] $accounts,
    Hash[String, Hash] $keys,
) {
    file { '/etc/swift/container-sync-realms.conf':
        ensure    => present,
        mode      => '0440',
        owner     => 'swift',
        group     => 'swift',
        content   => template('swift/container-sync-realms.conf.erb'),
        show_diff => false,
    }
}