Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated rotate root support for AWS Auth and Secrets #29497

Merged
merged 9 commits into from
Feb 10, 2025
Prev Previous commit
Next Next commit
fix couple more tests
  • Loading branch information
vinay-gopalan committed Feb 10, 2025
commit 14f8997f1af07f93d09536d2910fca2b25096f1a
1 change: 1 addition & 0 deletions builtin/credential/aws/backend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,7 @@ func TestBackend_ConfigClient(t *testing.T) {
config := logical.TestBackendConfig()
storage := &logical.InmemStorage{}
config.StorageView = storage
config.System = &testSystemView{}

b, err := Backend(config)
if err != nil {
Expand Down
2 changes: 2 additions & 0 deletions builtin/credential/aws/path_login_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ func TestBackend_pathLogin_IAMHeaders(t *testing.T) {
storage := &logical.InmemStorage{}
config := logical.TestBackendConfig()
config.StorageView = storage
config.System = &testSystemView{}

b, err := Backend(config)
if err != nil {
t.Fatal(err)
Expand Down
Loading