From f7328693f247b60597c4c8c831742c68e153edf5 Mon Sep 17 00:00:00 2001 From: Guillaume Martinez Date: Thu, 14 Feb 2019 11:04:55 +0100 Subject: [PATCH] gitlab_runner: refresh deprecated documentation notes (#52221) --- lib/ansible/modules/source_control/gitlab_runner.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/source_control/gitlab_runner.py b/lib/ansible/modules/source_control/gitlab_runner.py index 1967d7bc8a2..d3466c1ac84 100644 --- a/lib/ansible/modules/source_control/gitlab_runner.py +++ b/lib/ansible/modules/source_control/gitlab_runner.py @@ -26,9 +26,8 @@ description: To create shared runners, you need to ask your administrator to give you this token. It can be found at U(https://$GITLAB_URL/admin/runners/). notes: - - Instead of the private_token parameter, the GITLAB_PRIVATE_TOKEN environment variable can be used. - - To create a new runner at least the C(private_token), C(registration_token), C(name) and C(url) options are required. - - Runners need to have unique names. + - To create a new runner at least the C(api_token), C(description) and C(url) options are required. + - Runners need to have unique descriptions. version_added: 2.8 author: - Samy Coenen (@SamyCoenen)