add EntStaticSystemView to StaticSystemView and its ce stubs (#29516)

This commit is contained in:
Thy Ton 2025-02-06 08:32:14 -08:00 committed by GitHub
parent 496314638f
commit 5dc9dea8ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View File

@ -146,6 +146,7 @@ type ExtendedSystemView interface {
type PasswordGenerator func() (password string, err error)
type StaticSystemView struct {
EntStaticSystemView
DefaultLeaseTTLVal time.Duration
MaxLeaseTTLVal time.Duration
SudoPrivilegeVal bool

View File

@ -0,0 +1,8 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !enterprise
package logical
type EntStaticSystemView struct{}