From 4152d393cb3a66edbc9fd04900f0529a7b8b3e63 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Wed, 23 Oct 2024 10:58:14 +0200 Subject: [PATCH] [tutorial 006] A variable with type choice "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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/firefox/00-proxy.yml b/firefox/00-proxy.yml index 9d7618a..0272c72 100644 --- a/firefox/00-proxy.yml +++ b/firefox/00-proxy.yml @@ -1,4 +1,11 @@ --- proxy_mode: description: Configure Proxy Access to the Internet + type: choice + choices: + - No proxy + - Auto-detect proxy settings for this network + - Use system proxy settings + - Manual proxy configuration + - Automatic proxy configuration URL default: No proxy