-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backport release/1.18.x: db skip auto import rotation (#29310)
* secrets/db: enable skip auto import rotation of static roles (#29093) * secrets/db: enable skip auto import rotation of static roles * fix panic due to empty role name causing role to not be stored * fix role upgrade test * Apply suggestions from code review Co-authored-by: vinay-gopalan <[email protected]> Co-authored-by: kpcraig <[email protected]> * use password in favor of self_managed_password * add deprecated to self_managed_password field * fix bug with allowing updates to password --------- Co-authored-by: vinay-gopalan <[email protected]> Co-authored-by: kpcraig <[email protected]> * db: fix skip-import-rotation/rootless integration (#29202) * db: fix skip-import-rotation/rootless integration * prevent setting both password and self_managed_password * move func call and add comment * db: allow updates to self_managed_password (#29283) * test: fix ce/ent diff (#29307) --------- Co-authored-by: vinay-gopalan <[email protected]> Co-authored-by: kpcraig <[email protected]>
- Loading branch information
1 parent
9337ad8
commit 55024eb
Showing
9 changed files
with
249 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
//go:build !enterprise | ||
|
||
package database | ||
|
||
import "github.com/hashicorp/vault/sdk/framework" | ||
|
||
// AddConnectionFieldsEnt is a no-op for community edition | ||
func AddConnectionFieldsEnt(fields map[string]*framework.FieldSchema) { | ||
// no-op | ||
} |
Oops, something went wrong.