From 069f24e5a7c0acdb050c0c96b82f5d3c3afe40ac Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Sun, 9 Nov 2025 19:31:07 +0100 Subject: [PATCH] [tutorial v1.1_004] Limits the possible values for the variable "Foo" should not be an option to the "proxy_mode" variable. Now the "proxy_mode" type is "choice", that means that there is a list of available values that can be selected. We say that the "proxy_mode" variable is constrained (by choices): this variable accept, in fact, only a list of choices. --- firefox/00-proxy.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/firefox/00-proxy.yml b/firefox/00-proxy.yml index b3585514..92b75f58 100644 --- a/firefox/00-proxy.yml +++ b/firefox/00-proxy.yml @@ -2,5 +2,13 @@ --- version: 1.1 -proxy_mode: No proxy # Configure Proxy Access to the Internet +proxy_mode: + description: Configure Proxy Access to the Internet + choices: + - No proxy + - Auto-detect proxy settings for this network + - Use system proxy settings + - Manual proxy configuration + - Automatic proxy configuration URL + default: No proxy ...