From 9491b04fc7dd0c00d24da05eacac21c38b13c639 Mon Sep 17 00:00:00 2001
From: Darby Frey <dfrey@gitlab.com>
Date: Mon, 31 Jan 2022 10:42:58 -0600
Subject: [PATCH] Use valid bucket name in Secure Files config examples

---
 config/gitlab.yml.example | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example
index 632f077f4a6f..bcb34548f817 100644
--- a/config/gitlab.yml.example
+++ b/config/gitlab.yml.example
@@ -410,7 +410,7 @@ production: &base
     # storage_path: shared/ci_secure_files
     object_store:
       enabled: false
-      remote_directory: ci_secure_files # The bucket name
+      remote_directory: ci-secure-files # The bucket name
       connection:
         provider: AWS
         aws_access_key_id: AWS_ACCESS_KEY_ID
@@ -1449,7 +1449,7 @@ test:
     storage_path: tmp/tests/ci_secure_files
     object_store:
       enabled: false
-      remote_directory: ci_secure_files
+      remote_directory: ci-secure-files
       connection:
         provider: AWS # Only AWS supported at the moment
         aws_access_key_id: AWS_ACCESS_KEY_ID
-- 
GitLab