azurerm_resource_policy_assignment

package
v0.0.0-...-4deecce Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// Description: string, optional
	Description terra.StringValue `hcl:"description,attr"`
	// DisplayName: string, optional
	DisplayName terra.StringValue `hcl:"display_name,attr"`
	// Enforce: bool, optional
	Enforce terra.BoolValue `hcl:"enforce,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Location: string, optional
	Location terra.StringValue `hcl:"location,attr"`
	// Metadata: string, optional
	Metadata terra.StringValue `hcl:"metadata,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// NotScopes: list of string, optional
	NotScopes terra.ListValue[terra.StringValue] `hcl:"not_scopes,attr"`
	// Parameters: string, optional
	Parameters terra.StringValue `hcl:"parameters,attr"`
	// PolicyDefinitionId: string, required
	PolicyDefinitionId terra.StringValue `hcl:"policy_definition_id,attr" validate:"required"`
	// ResourceId: string, required
	ResourceId terra.StringValue `hcl:"resource_id,attr" validate:"required"`
	// Identity: optional
	Identity *Identity `hcl:"identity,block"`
	// NonComplianceMessage: min=0
	NonComplianceMessage []NonComplianceMessage `hcl:"non_compliance_message,block" validate:"min=0"`
	// Overrides: min=0
	Overrides []Overrides `hcl:"overrides,block" validate:"min=0"`
	// ResourceSelectors: min=0
	ResourceSelectors []ResourceSelectors `hcl:"resource_selectors,block" validate:"min=0"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for azurerm_resource_policy_assignment.

type Identity

type Identity struct {
	// IdentityIds: set of string, optional
	IdentityIds terra.SetValue[terra.StringValue] `hcl:"identity_ids,attr"`
	// Type: string, required
	Type terra.StringValue `hcl:"type,attr" validate:"required"`
}

type IdentityAttributes

type IdentityAttributes struct {
	// contains filtered or unexported fields
}

func (IdentityAttributes) IdentityIds

func (IdentityAttributes) InternalRef

func (i IdentityAttributes) InternalRef() (terra.Reference, error)

func (IdentityAttributes) InternalTokens

func (i IdentityAttributes) InternalTokens() (hclwrite.Tokens, error)

func (IdentityAttributes) InternalWithRef

func (i IdentityAttributes) InternalWithRef(ref terra.Reference) IdentityAttributes

func (IdentityAttributes) PrincipalId

func (i IdentityAttributes) PrincipalId() terra.StringValue

func (IdentityAttributes) TenantId

func (i IdentityAttributes) TenantId() terra.StringValue

func (IdentityAttributes) Type

type IdentityState

type IdentityState struct {
	IdentityIds []string `json:"identity_ids"`
	PrincipalId string   `json:"principal_id"`
	TenantId    string   `json:"tenant_id"`
	Type        string   `json:"type"`
}

type NonComplianceMessage

type NonComplianceMessage struct {
	// Content: string, required
	Content terra.StringValue `hcl:"content,attr" validate:"required"`
	// PolicyDefinitionReferenceId: string, optional
	PolicyDefinitionReferenceId terra.StringValue `hcl:"policy_definition_reference_id,attr"`
}

type NonComplianceMessageAttributes

type NonComplianceMessageAttributes struct {
	// contains filtered or unexported fields
}

func (NonComplianceMessageAttributes) Content

func (NonComplianceMessageAttributes) InternalRef

func (ncm NonComplianceMessageAttributes) InternalRef() (terra.Reference, error)

func (NonComplianceMessageAttributes) InternalTokens

func (ncm NonComplianceMessageAttributes) InternalTokens() (hclwrite.Tokens, error)

func (NonComplianceMessageAttributes) InternalWithRef

func (NonComplianceMessageAttributes) PolicyDefinitionReferenceId

func (ncm NonComplianceMessageAttributes) PolicyDefinitionReferenceId() terra.StringValue

type NonComplianceMessageState

type NonComplianceMessageState struct {
	Content                     string `json:"content"`
	PolicyDefinitionReferenceId string `json:"policy_definition_reference_id"`
}

type Overrides

type Overrides struct {
	// Value: string, required
	Value terra.StringValue `hcl:"value,attr" validate:"required"`
	// OverridesSelectors: min=0
	Selectors []OverridesSelectors `hcl:"selectors,block" validate:"min=0"`
}

type OverridesAttributes

type OverridesAttributes struct {
	// contains filtered or unexported fields
}

func (OverridesAttributes) InternalRef

func (o OverridesAttributes) InternalRef() (terra.Reference, error)

func (OverridesAttributes) InternalTokens

func (o OverridesAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OverridesAttributes) InternalWithRef

func (o OverridesAttributes) InternalWithRef(ref terra.Reference) OverridesAttributes

func (OverridesAttributes) Selectors

func (OverridesAttributes) Value

type OverridesSelectors

type OverridesSelectors struct {
	// In: list of string, optional
	In terra.ListValue[terra.StringValue] `hcl:"in,attr"`
	// NotIn: list of string, optional
	NotIn terra.ListValue[terra.StringValue] `hcl:"not_in,attr"`
}

type OverridesSelectorsAttributes

type OverridesSelectorsAttributes struct {
	// contains filtered or unexported fields
}

func (OverridesSelectorsAttributes) In

func (OverridesSelectorsAttributes) InternalRef

func (OverridesSelectorsAttributes) InternalTokens

func (s OverridesSelectorsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OverridesSelectorsAttributes) InternalWithRef

func (OverridesSelectorsAttributes) Kind

func (OverridesSelectorsAttributes) NotIn

type OverridesSelectorsState

type OverridesSelectorsState struct {
	In    []string `json:"in"`
	Kind  string   `json:"kind"`
	NotIn []string `json:"not_in"`
}

type OverridesState

type OverridesState struct {
	Value     string                    `json:"value"`
	Selectors []OverridesSelectorsState `json:"selectors"`
}

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 azurerm_resource_policy_assignment.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (arpa *Resource) Attributes() azurermResourcePolicyAssignmentAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (arpa *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (arpa *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (arpa *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (arpa *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (arpa *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (arpa *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (arpa *Resource) State() (*azurermResourcePolicyAssignmentState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (arpa *Resource) StateMust() *azurermResourcePolicyAssignmentState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (arpa *Resource) Type() string

Type returns the Terraform object type for Resource.

type ResourceSelectors

type ResourceSelectors struct {
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// ResourceSelectorsSelectors: min=1
	Selectors []ResourceSelectorsSelectors `hcl:"selectors,block" validate:"min=1"`
}

type ResourceSelectorsAttributes

type ResourceSelectorsAttributes struct {
	// contains filtered or unexported fields
}

func (ResourceSelectorsAttributes) InternalRef

func (rs ResourceSelectorsAttributes) InternalRef() (terra.Reference, error)

func (ResourceSelectorsAttributes) InternalTokens

func (rs ResourceSelectorsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ResourceSelectorsAttributes) InternalWithRef

func (ResourceSelectorsAttributes) Name

func (ResourceSelectorsAttributes) Selectors

type ResourceSelectorsSelectors

type ResourceSelectorsSelectors struct {
	// In: list of string, optional
	In terra.ListValue[terra.StringValue] `hcl:"in,attr"`
	// Kind: string, required
	Kind terra.StringValue `hcl:"kind,attr" validate:"required"`
	// NotIn: list of string, optional
	NotIn terra.ListValue[terra.StringValue] `hcl:"not_in,attr"`
}

type ResourceSelectorsSelectorsAttributes

type ResourceSelectorsSelectorsAttributes struct {
	// contains filtered or unexported fields
}

func (ResourceSelectorsSelectorsAttributes) In

func (ResourceSelectorsSelectorsAttributes) InternalRef

func (ResourceSelectorsSelectorsAttributes) InternalTokens

func (ResourceSelectorsSelectorsAttributes) InternalWithRef

func (ResourceSelectorsSelectorsAttributes) Kind

func (ResourceSelectorsSelectorsAttributes) NotIn

type ResourceSelectorsSelectorsState

type ResourceSelectorsSelectorsState struct {
	In    []string `json:"in"`
	Kind  string   `json:"kind"`
	NotIn []string `json:"not_in"`
}

type ResourceSelectorsState

type ResourceSelectorsState struct {
	Name      string                            `json:"name"`
	Selectors []ResourceSelectorsSelectorsState `json:"selectors"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
	// Read: string, optional
	Read terra.StringValue `hcl:"read,attr"`
	// Update: string, optional
	Update terra.StringValue `hcl:"update,attr"`
}

type TimeoutsAttributes

type TimeoutsAttributes struct {
	// contains filtered or unexported fields
}

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

func (TimeoutsAttributes) Read

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Read   string `json:"read"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL