]> git.immae.eu Git - github/fretlink/ansible-clever.git/blame - dhall/ServiceDependency.dhall
Add dhall definitions for linked service dependencies
[github/fretlink/ansible-clever.git] / dhall / ServiceDependency.dhall
CommitLineData
f6422761
CD
1let ServiceDependency =
2 < Addon : { addon_id : Text } | Application : { app_id : Text } >
3
4let addon = λ(addon_id : Text) → ServiceDependency.Addon { addon_id = addon_id }
5
6let application =
7 λ(app_id : Text) → ServiceDependency.Application { app_id = app_id }
8
9in { Type = ServiceDependency, addon = addon, application = application }