solar/resources/keystone_service_endpoint/meta.yaml
Przemyslaw Kaminski ee576c0aa8 More example-puppet simplifications
Added support for mappings of type:
{'A': ['x', 'y']}
(which maps from A to x and from A to y) and for mappings of type:
{'x', 'y', 'z'}
(which maps from x to x, y to y, z to z).
2015-07-17 09:59:29 +02:00

63 lines
1.1 KiB
YAML

id: keystone_service_endpoint
handler: ansible
version: 1.0.0
input:
keystone_host:
schema: str!
value:
keystone_admin_port:
schema: int!
value:
admin_token:
schema: str!
value:
endpoint_name:
schema: str!
value:
type:
schema: str!
value:
description:
schema: str!
value:
public_ip:
schema: str!
value:
public_port:
schema: int!
value:
publicurl:
schema: str!
value: http://{{public_ip}}:{{public_port}}/v2.0
internal_ip:
schema: str!
value:
internal_port:
schema: int!
value:
internalurl:
schema: str!
value: http://{{internal_ip}}:{{internal_port}}/v2.0
admin_ip:
schema: str!
value:
admin_port:
schema: int!
value:
adminurl:
schema: str!
value: http://{{admin_ip}}:{{admin_port}}/v2.0
ip:
schema: str!
value:
ssh_key:
schema: str!
value:
ssh_user:
schema: str!
value:
tags: [resource/keystone_service_endpoint, resources/keystone]