summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVarun Ravichandran <varun.ravichandran@mongodb.com>2022-08-23 15:32:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-09-20 20:53:22 +0000
commit597ebc2163ad48f5674c2d8625458af6a46dd23d (patch)
treef3d6ba27a1e53a2d80fe1a61f1acfdffe48b8090
parented2177d7d5700900628351bdd3769dc89c298635 (diff)
downloadmongo-597ebc2163ad48f5674c2d8625458af6a46dd23d.tar.gz
Revert "SERVER-65843: Feature flag for OIDC authentication spike"
This reverts commit efde5e5d4aa90df5ea9543a25fd954ece536c608. (cherry picked from commit ec2724c6a4cb6582d710f450714398c8bd6a70fb)
-rw-r--r--src/mongo/db/auth/SConscript15
-rw-r--r--src/mongo/db/auth/oidc_authentication.idl38
2 files changed, 0 insertions, 53 deletions
diff --git a/src/mongo/db/auth/SConscript b/src/mongo/db/auth/SConscript
index 2ab6fa8b45e..32fc6a3df7f 100644
--- a/src/mongo/db/auth/SConscript
+++ b/src/mongo/db/auth/SConscript
@@ -187,7 +187,6 @@ env.Library(
],
LIBDEPS_PRIVATE=[
'$BUILD_DIR/mongo/idl/server_parameter',
- 'oidc_authentication_config',
],
)
@@ -536,20 +535,6 @@ env.Library(
],
)
-env.Library(
- target="oidc_authentication_config",
- source=[
- "oidc_authentication.idl",
- ],
- LIBDEPS=[
- '$BUILD_DIR/mongo/base',
- ],
- LIBDEPS_PRIVATE=[
- '$BUILD_DIR/mongo/idl/feature_flag',
- '$BUILD_DIR/mongo/idl/idl_parser',
- ],
-)
-
env.CppUnitTest(
target='db_auth_test',
source=[
diff --git a/src/mongo/db/auth/oidc_authentication.idl b/src/mongo/db/auth/oidc_authentication.idl
deleted file mode 100644
index 67f6d4d4f1c..00000000000
--- a/src/mongo/db/auth/oidc_authentication.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (C) 2022-present MongoDB, Inc.
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the Server Side Public License, version 1,
-# as published by MongoDB, Inc.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# Server Side Public License for more details.
-#
-# You should have received a copy of the Server Side Public License
-# along with this program. If not, see
-# <http://www.mongodb.com/licensing/server-side-public-license>.
-#
-# As a special exception, the copyright holders give permission to link the
-# code of portions of this program with the OpenSSL library under certain
-# conditions as described in each individual source file and distribute
-# linked combinations including the program with the OpenSSL library. You
-# must comply with the Server Side Public License in all respects for
-# all of the code used other than as permitted herein. If you modify file(s)
-# with this exception, you may extend this exception to your version of the
-# file(s), but you are not obligated to do so. If you do not wish to do so,
-# delete this exception statement from your version. If you delete this
-# exception statement from all source files in the program, then also delete
-# it in the license file.
-
-global:
- cpp_namespace: "mongo"
-
-imports:
- - "mongo/idl/basic_types.idl"
-
-feature_flags:
- featureFlagOIDCSpike:
- description: "Feature flag to guard OIDC during spike implementation"
- cpp_varname: gFeatureFlagOIDCSpike
- default: false