This commit adds a basic Dhall type for an easier usage of this role.
* `rundeck_remove_missing` Whether to delete jobs present in rundeck and not in file. Defaults to true.
* `rundeck_jobs_group` the group of job to check for removal
+A [dhall](https://dhall-lang.org/) Type representing the roles' variables is available in the `./dhall/Config.dhall` file to help you configure your projects with some type checking.
+
Dependencies
------------
--- /dev/null
+{ rundeck_jobs_path :
+ Text
+, rundeck_project :
+ Text
+, rundeck_api_url :
+ Text
+, rundeck_api_token :
+ Text
+, rundeck_api_version :
+ Optional Natural
+, rundeck_remove_missing :
+ Optional Bool
+, rundeck_jobs_group :
+ Optional Text
+}
--- /dev/null
+{ Vault = ./Vault.dhall, Config = ./Config.dhall }
--- /dev/null
+{ apiToken : Text }