From f1dc510f6977dfa7b930770db0e9e17195399b33 Mon Sep 17 00:00:00 2001 From: George Date: Wed, 24 Jul 2024 17:04:57 +0100 Subject: [PATCH] fix(configuration): correct reference for git access token Fixup the configuration overview for section for git storage authentication via tokens. As per comment in https://github.com/flipt-io/flipt/issues/2271#issuecomment-2248383092 this was incorrectly defined in this section and missed the trailing `access_token` field. --- configuration/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/overview.mdx b/configuration/overview.mdx index 38bfd04..90adfd6 100644 --- a/configuration/overview.mdx +++ b/configuration/overview.mdx @@ -327,7 +327,7 @@ export FLIPT_CORS_ALLOWED_ORIGINS="http://localhost:3000 http://localhost:3001" | storage.git.directory | The root directory to search in the repository | | v1.40.0 | | storage.git.authentication.basic.username | The username to use for basic authentication | | v1.25.0 | | storage.git.authentication.basic.password | The password to use for basic authentication | | v1.25.0 | -| storage.git.authentication.token | The access token to use for authentication | | v1.25.0 | +| storage.git.authentication.token.access_token | The access token to use for authentication | | v1.25.0 | | storage.git.authentication.ssh.password | Password used to generate the SSH key pair | | v1.30.0 | | storage.git.authentication.ssh.private_key_path | Path to private key on the filesystem | | v1.30.0 | | storage.git.authentication.ssh.private_key_bytes | (Alternative) Raw private key bytes | | v1.30.0 |