From a4f0ca729efe1276345468b5f0368ca0c05b6be3 Mon Sep 17 00:00:00 2001 From: Karel van Klink <karel.vanklink@geant.org> Date: Tue, 11 Apr 2023 13:36:44 +0200 Subject: [PATCH] Update config schema and example file --- ansible_api/config.py | 4 ++-- config.json.example | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible_api/config.py b/ansible_api/config.py index 60d44a0..b0bd9f7 100644 --- a/ansible_api/config.py +++ b/ansible_api/config.py @@ -9,9 +9,9 @@ CONFIG_SCHEMA = { 'type': 'object', 'properties': { - 'playbook-dir': {'type': 'string'}, + 'collection-uri': {'type': 'string'}, }, - 'required': ['playbook-dir'], + 'required': ['collection-uri'], 'additionalProperties': False } diff --git a/config.json.example b/config.json.example index c422034..52411a1 100644 --- a/config.json.example +++ b/config.json.example @@ -1,3 +1,3 @@ { - "playbook-dir": "/absolute/path/to/playbooks" -} \ No newline at end of file + "collection-uri": "organisation.collection" +} -- GitLab