Composable roles within services - Redis
[apex-tripleo-heat-templates.git] / puppet / services / database / redis-base.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   OpenStack Redis service configured with Puppet
5
6 parameters:
7   RedisPassword:
8     description: The password for Redis
9     type: string
10     hidden: true
11
12 outputs:
13   role_data:
14     description: Role data for the redis role.
15     value:
16       config_settings:
17        redis::requirepass: {get_param: RedisPassword}
18        redis::masterauth: {get_param: RedisPassword}
19        redis::sentinel_auth_pass: {get_param: RedisPassword}
20        tripleo::loadbalancer::redis_password: {get_param: RedisPassword}
21