All Projects → pivotal-cf → cf-redis-broker

pivotal-cf / cf-redis-broker

Licence: Apache-2.0 license
No description, website, or topics provided.

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

cf-redis-broker

Integration Tests

AWS Keys

The backup integration tests send data to AWS S3, and need the following evironment variables set to be able to work:

  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY

These are defined in (this is wrong?) integration/backup/assets/working-backup.yml.template.

It also expect a bucket called redis-backup-test, and the user whose key is provided, above, should have the following access to the bucket for testing purposes:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "RestrictiveBackups",
            "Effect": "Allow",
            "Action": [
                "s3:CreateBucket",
                "s3:PutObject",
                "s3:DeleteObject",
                "s3:ListObject",
                "s3:ListBucket"
            ],
            "Resource": [
                "arn:aws:s3:::redis-backup-test",
                "arn:aws:s3:::redis-backup-test/*"
            ]
        },
    ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].