aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/Addon.dhall
diff options
context:
space:
mode:
authorClement Delafargue <clement.delafargue@fretlink.com>2019-10-02 11:02:54 +0200
committerClement Delafargue <clement.delafargue@fretlink.com>2019-10-02 11:28:53 +0200
commit2acb3d4f7a61f0a6d932624ccf11cd14d5dc1ff8 (patch)
tree9f1e54602403fa90be42b475f722400142b434b4 /dhall/Addon.dhall
parent3290aaf7f973cf3c64219d029538f53f1d82da94 (diff)
downloadansible-clever-2acb3d4f7a61f0a6d932624ccf11cd14d5dc1ff8.tar.gz
ansible-clever-2acb3d4f7a61f0a6d932624ccf11cd14d5dc1ff8.tar.zst
ansible-clever-2acb3d4f7a61f0a6d932624ccf11cd14d5dc1ff8.zip
Migrate to dhall 1.26.1 and merge types and termsv2.0-test-clementdpolykinds
Diffstat (limited to 'dhall/Addon.dhall')
-rw-r--r--dhall/Addon.dhall6
1 files changed, 6 insertions, 0 deletions
diff --git a/dhall/Addon.dhall b/dhall/Addon.dhall
new file mode 100644
index 0000000..76d2c80
--- /dev/null
+++ b/dhall/Addon.dhall
@@ -0,0 +1,6 @@
1let Addon = < Postgresql : { name : Text, env_prefix : Text } >
2
3let postgresql =
4 Addon.Postgresql { name = "pg", env_prefix = "POSTGRESQL_ADDON" }
5
6in { Type = Addon, postgresql = postgresql }