Sha256: 5a007bdce9ef0d52ae524f25b1edd7110429dbb6f0419a613da671c15fa22df4

Contents?: true

Size: 630 Bytes

Versions: 3

Compression:

Stored size: 630 Bytes

Contents

##
# OpenStack Swift object storage [Storage]
#
store_with Swift do |swift|
  # Your OpenStack credentials
  swift.auth_url      = "https://my.identity.server/v2.0/tokens"
  swift.username      = "my_username"
  swift.password      = "my_password"
  
  # If using a Keystone (v2) identity
  swift.tenant_name   = "my_tenant_name"

  swift.container     = "my_swift_container"
  swift.path          = "path/to/backups"        
  swift.keep          = 5
  # swift.keep          = Time.now - 2592000 # Remove all backups older than 1 month.        
  # If your deploiement has multiple regions
  # swift.region        = "region"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
backedup-5.0.0.beta.5 templates/cli/storages/swift
backedup-5.0.0.beta.4 templates/cli/storages/swift
backedup-5.0.0.beta.3 templates/cli/storages/swift