Documentation ¶
Index ¶
- type Args
- type Container
- type ContainerAttributes
- type ContainerState
- type EnvironmentVariable
- type EnvironmentVariableAttributes
- func (ev EnvironmentVariableAttributes) InternalRef() (terra.Reference, error)
- func (ev EnvironmentVariableAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ev EnvironmentVariableAttributes) InternalWithRef(ref terra.Reference) EnvironmentVariableAttributes
- func (ev EnvironmentVariableAttributes) Name() terra.StringValue
- func (ev EnvironmentVariableAttributes) SecureValue() terra.StringValue
- func (ev EnvironmentVariableAttributes) Value() terra.StringValue
- type EnvironmentVariableState
- type Identity
- type IdentityAttributes
- func (i IdentityAttributes) IdentityIds() terra.SetValue[terra.StringValue]
- func (i IdentityAttributes) InternalRef() (terra.Reference, error)
- func (i IdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (i IdentityAttributes) InternalWithRef(ref terra.Reference) IdentityAttributes
- func (i IdentityAttributes) Type() terra.StringValue
- type IdentityState
- type Resource
- func (ardsac *Resource) Attributes() azurermResourceDeploymentScriptAzureCliAttributes
- func (ardsac *Resource) Configuration() interface{}
- func (ardsac *Resource) DependOn() terra.Reference
- func (ardsac *Resource) Dependencies() terra.Dependencies
- func (ardsac *Resource) ImportState(state io.Reader) error
- func (ardsac *Resource) LifecycleManagement() *terra.Lifecycle
- func (ardsac *Resource) LocalName() string
- func (ardsac *Resource) State() (*azurermResourceDeploymentScriptAzureCliState, bool)
- func (ardsac *Resource) StateMust() *azurermResourceDeploymentScriptAzureCliState
- func (ardsac *Resource) Type() string
- type StorageAccount
- type StorageAccountAttributes
- func (sa StorageAccountAttributes) InternalRef() (terra.Reference, error)
- func (sa StorageAccountAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (sa StorageAccountAttributes) InternalWithRef(ref terra.Reference) StorageAccountAttributes
- func (sa StorageAccountAttributes) Key() terra.StringValue
- func (sa StorageAccountAttributes) Name() terra.StringValue
- type StorageAccountState
- type Timeouts
- type TimeoutsAttributes
- func (t TimeoutsAttributes) Create() terra.StringValue
- func (t TimeoutsAttributes) Delete() terra.StringValue
- func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)
- func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes
- func (t TimeoutsAttributes) Read() terra.StringValue
- func (t TimeoutsAttributes) Update() terra.StringValue
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // CleanupPreference: string, optional CleanupPreference terra.StringValue `hcl:"cleanup_preference,attr"` // CommandLine: string, optional CommandLine terra.StringValue `hcl:"command_line,attr"` // ForceUpdateTag: string, optional ForceUpdateTag terra.StringValue `hcl:"force_update_tag,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // PrimaryScriptUri: string, optional PrimaryScriptUri terra.StringValue `hcl:"primary_script_uri,attr"` // ResourceGroupName: string, required ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"` // RetentionInterval: string, required RetentionInterval terra.StringValue `hcl:"retention_interval,attr" validate:"required"` // ScriptContent: string, optional ScriptContent terra.StringValue `hcl:"script_content,attr"` // SupportingScriptUris: list of string, optional SupportingScriptUris terra.ListValue[terra.StringValue] `hcl:"supporting_script_uris,attr"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // Timeout: string, optional Timeout terra.StringValue `hcl:"timeout,attr"` // Version: string, required Version terra.StringValue `hcl:"version,attr" validate:"required"` // Container: optional Container *Container `hcl:"container,block"` // EnvironmentVariable: min=0 EnvironmentVariable []EnvironmentVariable `hcl:"environment_variable,block" validate:"min=0"` // Identity: optional Identity *Identity `hcl:"identity,block"` // StorageAccount: optional StorageAccount *StorageAccount `hcl:"storage_account,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_resource_deployment_script_azure_cli.
type Container ¶
type Container struct { // ContainerGroupName: string, optional ContainerGroupName terra.StringValue `hcl:"container_group_name,attr"` }
type ContainerAttributes ¶
type ContainerAttributes struct {
// contains filtered or unexported fields
}
func (ContainerAttributes) ContainerGroupName ¶
func (c ContainerAttributes) ContainerGroupName() terra.StringValue
func (ContainerAttributes) InternalRef ¶
func (c ContainerAttributes) InternalRef() (terra.Reference, error)
func (ContainerAttributes) InternalTokens ¶
func (c ContainerAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ContainerAttributes) InternalWithRef ¶
func (c ContainerAttributes) InternalWithRef(ref terra.Reference) ContainerAttributes
type ContainerState ¶
type ContainerState struct {
ContainerGroupName string `json:"container_group_name"`
}
type EnvironmentVariable ¶
type EnvironmentVariable struct { // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // SecureValue: string, optional SecureValue terra.StringValue `hcl:"secure_value,attr"` // Value: string, optional Value terra.StringValue `hcl:"value,attr"` }
type EnvironmentVariableAttributes ¶
type EnvironmentVariableAttributes struct {
// contains filtered or unexported fields
}
func (EnvironmentVariableAttributes) InternalRef ¶
func (ev EnvironmentVariableAttributes) InternalRef() (terra.Reference, error)
func (EnvironmentVariableAttributes) InternalTokens ¶
func (ev EnvironmentVariableAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EnvironmentVariableAttributes) InternalWithRef ¶
func (ev EnvironmentVariableAttributes) InternalWithRef(ref terra.Reference) EnvironmentVariableAttributes
func (EnvironmentVariableAttributes) Name ¶
func (ev EnvironmentVariableAttributes) Name() terra.StringValue
func (EnvironmentVariableAttributes) SecureValue ¶
func (ev EnvironmentVariableAttributes) SecureValue() terra.StringValue
func (EnvironmentVariableAttributes) Value ¶
func (ev EnvironmentVariableAttributes) Value() terra.StringValue
type Identity ¶
type Identity struct { // IdentityIds: set of string, required IdentityIds terra.SetValue[terra.StringValue] `hcl:"identity_ids,attr" validate:"required"` // 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 (i IdentityAttributes) IdentityIds() terra.SetValue[terra.StringValue]
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) Type ¶
func (i IdentityAttributes) Type() terra.StringValue
type IdentityState ¶
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_deployment_script_azure_cli.
func (*Resource) Attributes ¶
func (ardsac *Resource) Attributes() azurermResourceDeploymentScriptAzureCliAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (ardsac *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (ardsac *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 StorageAccount ¶
type StorageAccount struct { // Key: string, required Key terra.StringValue `hcl:"key,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` }
type StorageAccountAttributes ¶
type StorageAccountAttributes struct {
// contains filtered or unexported fields
}
func (StorageAccountAttributes) InternalRef ¶
func (sa StorageAccountAttributes) InternalRef() (terra.Reference, error)
func (StorageAccountAttributes) InternalTokens ¶
func (sa StorageAccountAttributes) InternalTokens() (hclwrite.Tokens, error)
func (StorageAccountAttributes) InternalWithRef ¶
func (sa StorageAccountAttributes) InternalWithRef(ref terra.Reference) StorageAccountAttributes
func (StorageAccountAttributes) Key ¶
func (sa StorageAccountAttributes) Key() terra.StringValue
func (StorageAccountAttributes) Name ¶
func (sa StorageAccountAttributes) Name() terra.StringValue
type StorageAccountState ¶
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 (t TimeoutsAttributes) Create() terra.StringValue
func (TimeoutsAttributes) Delete ¶
func (t TimeoutsAttributes) Delete() terra.StringValue
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 (t TimeoutsAttributes) Read() terra.StringValue
func (TimeoutsAttributes) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue
Click to show internal directories.
Click to hide internal directories.