From d8348490d5e977b573cfccd98b20d32607a90ac0 Mon Sep 17 00:00:00 2001 From: Austin Gebauer <34121980+austingebauer@users.noreply.github.com> Date: Thu, 23 Feb 2023 16:13:32 -0800 Subject: [PATCH] secrets/ad: change deprecation status to deprecated (#19334) * secrets/ad: change deprecation status to deprecated * adds changelog --- changelog/19334.txt | 3 +++ helper/builtinplugins/registry.go | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 changelog/19334.txt diff --git a/changelog/19334.txt b/changelog/19334.txt new file mode 100644 index 000000000..7df68268a --- /dev/null +++ b/changelog/19334.txt @@ -0,0 +1,3 @@ +```release-note:deprecation +secrets/ad: Marks the Active Directory (AD) secrets engine as deprecated. +``` \ No newline at end of file diff --git a/helper/builtinplugins/registry.go b/helper/builtinplugins/registry.go index 24539af5c..8a24a58c3 100644 --- a/helper/builtinplugins/registry.go +++ b/helper/builtinplugins/registry.go @@ -146,7 +146,10 @@ func newRegistry() *registry { "snowflake-database-plugin": {Factory: dbSnowflake.New}, }, logicalBackends: map[string]logicalBackend{ - "ad": {Factory: logicalAd.Factory}, + "ad": { + Factory: logicalAd.Factory, + DeprecationStatus: consts.Deprecated, + }, "alicloud": {Factory: logicalAlicloud.Factory}, "aws": {Factory: logicalAws.Factory}, "azure": {Factory: logicalAzure.Factory},