mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-18 18:38:08 -05:00
secrets/ad: change deprecation status to deprecated (#19334)
* secrets/ad: change deprecation status to deprecated * adds changelog
This commit is contained in:
parent
794eb8b2e9
commit
431b4243e7
2 changed files with 7 additions and 1 deletions
3
changelog/19334.txt
Normal file
3
changelog/19334.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:deprecation
|
||||
secrets/ad: Marks the Active Directory (AD) secrets engine as deprecated.
|
||||
```
|
||||
|
|
@ -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},
|
||||
|
|
|
|||
Loading…
Reference in a new issue