Documentation ¶
Index ¶
- type Args
- type Group
- type GroupAttributes
- func (g GroupAttributes) GroupName() terra.StringValue
- func (g GroupAttributes) InternalRef() (terra.Reference, error)
- func (g GroupAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (g GroupAttributes) InternalWithRef(ref terra.Reference) GroupAttributes
- func (g GroupAttributes) Policies() terra.SetValue[terra.StringValue]
- type GroupState
- type Resource
- func (voab *Resource) Attributes() vaultOktaAuthBackendAttributes
- func (voab *Resource) Configuration() interface{}
- func (voab *Resource) DependOn() terra.Reference
- func (voab *Resource) Dependencies() terra.Dependencies
- func (voab *Resource) ImportState(state io.Reader) error
- func (voab *Resource) LifecycleManagement() *terra.Lifecycle
- func (voab *Resource) LocalName() string
- func (voab *Resource) State() (*vaultOktaAuthBackendState, bool)
- func (voab *Resource) StateMust() *vaultOktaAuthBackendState
- func (voab *Resource) Type() string
- type User
- type UserAttributes
- func (u UserAttributes) Groups() terra.SetValue[terra.StringValue]
- func (u UserAttributes) InternalRef() (terra.Reference, error)
- func (u UserAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (u UserAttributes) InternalWithRef(ref terra.Reference) UserAttributes
- func (u UserAttributes) Policies() terra.SetValue[terra.StringValue]
- func (u UserAttributes) Username() terra.StringValue
- type UserState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // BaseUrl: string, optional BaseUrl terra.StringValue `hcl:"base_url,attr"` // BypassOktaMfa: bool, optional BypassOktaMfa terra.BoolValue `hcl:"bypass_okta_mfa,attr"` // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // DisableRemount: bool, optional DisableRemount terra.BoolValue `hcl:"disable_remount,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // MaxTtl: string, optional MaxTtl terra.StringValue `hcl:"max_ttl,attr"` // Namespace: string, optional Namespace terra.StringValue `hcl:"namespace,attr"` // Organization: string, required Organization terra.StringValue `hcl:"organization,attr" validate:"required"` // Path: string, optional Path terra.StringValue `hcl:"path,attr"` // Token: string, optional Token terra.StringValue `hcl:"token,attr"` // Ttl: string, optional Ttl terra.StringValue `hcl:"ttl,attr"` // Group: min=0 Group []Group `hcl:"group,block" validate:"min=0"` // User: min=0 User []User `hcl:"user,block" validate:"min=0"` }
Args contains the configurations for vault_okta_auth_backend.
type Group ¶
type Group struct { // GroupName: string, optional GroupName terra.StringValue `hcl:"group_name,attr"` // Policies: set of string, optional Policies terra.SetValue[terra.StringValue] `hcl:"policies,attr"` }
type GroupAttributes ¶
type GroupAttributes struct {
// contains filtered or unexported fields
}
func (GroupAttributes) GroupName ¶
func (g GroupAttributes) GroupName() terra.StringValue
func (GroupAttributes) InternalRef ¶
func (g GroupAttributes) InternalRef() (terra.Reference, error)
func (GroupAttributes) InternalTokens ¶
func (g GroupAttributes) InternalTokens() (hclwrite.Tokens, error)
func (GroupAttributes) InternalWithRef ¶
func (g GroupAttributes) InternalWithRef(ref terra.Reference) GroupAttributes
func (GroupAttributes) Policies ¶
func (g GroupAttributes) Policies() terra.SetValue[terra.StringValue]
type GroupState ¶
type Resource ¶
type Resource struct { Name string Args Args DependsOn terra.Dependencies Lifecycle *terra.Lifecycle // contains filtered or unexported fields }
Resource represents the Terraform resource vault_okta_auth_backend.
func (*Resource) Attributes ¶
func (voab *Resource) Attributes() vaultOktaAuthBackendAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (voab *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (voab *Resource) Dependencies() terra.Dependencies
Dependencies returns the list of resources Resource depends_on.
func (*Resource) ImportState ¶
ImportState imports the given attribute values into Resource's state.
func (*Resource) LifecycleManagement ¶
LifecycleManagement returns the lifecycle block for Resource.
type User ¶
type User struct { // Groups: set of string, optional Groups terra.SetValue[terra.StringValue] `hcl:"groups,attr"` // Policies: set of string, optional Policies terra.SetValue[terra.StringValue] `hcl:"policies,attr"` // Username: string, optional Username terra.StringValue `hcl:"username,attr"` }
type UserAttributes ¶
type UserAttributes struct {
// contains filtered or unexported fields
}
func (UserAttributes) Groups ¶
func (u UserAttributes) Groups() terra.SetValue[terra.StringValue]
func (UserAttributes) InternalRef ¶
func (u UserAttributes) InternalRef() (terra.Reference, error)
func (UserAttributes) InternalTokens ¶
func (u UserAttributes) InternalTokens() (hclwrite.Tokens, error)
func (UserAttributes) InternalWithRef ¶
func (u UserAttributes) InternalWithRef(ref terra.Reference) UserAttributes
func (UserAttributes) Policies ¶
func (u UserAttributes) Policies() terra.SetValue[terra.StringValue]
func (UserAttributes) Username ¶
func (u UserAttributes) Username() terra.StringValue
Click to show internal directories.
Click to hide internal directories.