azurerm_windows_function_app

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 {
	// AppSettings: map of string, optional
	AppSettings terra.MapValue[terra.StringValue] `hcl:"app_settings,attr"`
	// BuiltinLoggingEnabled: bool, optional
	BuiltinLoggingEnabled terra.BoolValue `hcl:"builtin_logging_enabled,attr"`
	// ClientCertificateEnabled: bool, optional
	ClientCertificateEnabled terra.BoolValue `hcl:"client_certificate_enabled,attr"`
	// ClientCertificateExclusionPaths: string, optional
	ClientCertificateExclusionPaths terra.StringValue `hcl:"client_certificate_exclusion_paths,attr"`
	// ClientCertificateMode: string, optional
	ClientCertificateMode terra.StringValue `hcl:"client_certificate_mode,attr"`
	// ContentShareForceDisabled: bool, optional
	ContentShareForceDisabled terra.BoolValue `hcl:"content_share_force_disabled,attr"`
	// DailyMemoryTimeQuota: number, optional
	DailyMemoryTimeQuota terra.NumberValue `hcl:"daily_memory_time_quota,attr"`
	// Enabled: bool, optional
	Enabled terra.BoolValue `hcl:"enabled,attr"`
	// FtpPublishBasicAuthenticationEnabled: bool, optional
	FtpPublishBasicAuthenticationEnabled terra.BoolValue `hcl:"ftp_publish_basic_authentication_enabled,attr"`
	// FunctionsExtensionVersion: string, optional
	FunctionsExtensionVersion terra.StringValue `hcl:"functions_extension_version,attr"`
	// HttpsOnly: bool, optional
	HttpsOnly terra.BoolValue `hcl:"https_only,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// KeyVaultReferenceIdentityId: string, optional
	KeyVaultReferenceIdentityId terra.StringValue `hcl:"key_vault_reference_identity_id,attr"`
	// Location: string, required
	Location terra.StringValue `hcl:"location,attr" validate:"required"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// PublicNetworkAccessEnabled: bool, optional
	PublicNetworkAccessEnabled terra.BoolValue `hcl:"public_network_access_enabled,attr"`
	// ResourceGroupName: string, required
	ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"`
	// ServicePlanId: string, required
	ServicePlanId terra.StringValue `hcl:"service_plan_id,attr" validate:"required"`
	// StorageAccountAccessKey: string, optional
	StorageAccountAccessKey terra.StringValue `hcl:"storage_account_access_key,attr"`
	// StorageAccountName: string, optional
	StorageAccountName terra.StringValue `hcl:"storage_account_name,attr"`
	// StorageKeyVaultSecretId: string, optional
	StorageKeyVaultSecretId terra.StringValue `hcl:"storage_key_vault_secret_id,attr"`
	// StorageUsesManagedIdentity: bool, optional
	StorageUsesManagedIdentity terra.BoolValue `hcl:"storage_uses_managed_identity,attr"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
	// VirtualNetworkSubnetId: string, optional
	VirtualNetworkSubnetId terra.StringValue `hcl:"virtual_network_subnet_id,attr"`
	// WebdeployPublishBasicAuthenticationEnabled: bool, optional
	WebdeployPublishBasicAuthenticationEnabled terra.BoolValue `hcl:"webdeploy_publish_basic_authentication_enabled,attr"`
	// ZipDeployFile: string, optional
	ZipDeployFile terra.StringValue `hcl:"zip_deploy_file,attr"`
	// AuthSettings: optional
	AuthSettings *AuthSettings `hcl:"auth_settings,block"`
	// AuthSettingsV2: optional
	AuthSettingsV2 *AuthSettingsV2 `hcl:"auth_settings_v2,block"`
	// Backup: optional
	Backup *Backup `hcl:"backup,block"`
	// ConnectionString: min=0
	ConnectionString []ConnectionString `hcl:"connection_string,block" validate:"min=0"`
	// Identity: optional
	Identity *Identity `hcl:"identity,block"`
	// SiteConfig: required
	SiteConfig *SiteConfig `hcl:"site_config,block" validate:"required"`
	// StickySettings: optional
	StickySettings *StickySettings `hcl:"sticky_settings,block"`
	// StorageAccount: min=0
	StorageAccount []StorageAccount `hcl:"storage_account,block" validate:"min=0"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for azurerm_windows_function_app.

type AuthSettings

type AuthSettings struct {
	// AdditionalLoginParameters: map of string, optional
	AdditionalLoginParameters terra.MapValue[terra.StringValue] `hcl:"additional_login_parameters,attr"`
	// AllowedExternalRedirectUrls: list of string, optional
	AllowedExternalRedirectUrls terra.ListValue[terra.StringValue] `hcl:"allowed_external_redirect_urls,attr"`
	// DefaultProvider: string, optional
	DefaultProvider terra.StringValue `hcl:"default_provider,attr"`
	// Enabled: bool, required
	Enabled terra.BoolValue `hcl:"enabled,attr" validate:"required"`
	// Issuer: string, optional
	Issuer terra.StringValue `hcl:"issuer,attr"`
	// RuntimeVersion: string, optional
	RuntimeVersion terra.StringValue `hcl:"runtime_version,attr"`
	// TokenRefreshExtensionHours: number, optional
	TokenRefreshExtensionHours terra.NumberValue `hcl:"token_refresh_extension_hours,attr"`
	// TokenStoreEnabled: bool, optional
	TokenStoreEnabled terra.BoolValue `hcl:"token_store_enabled,attr"`
	// UnauthenticatedClientAction: string, optional
	UnauthenticatedClientAction terra.StringValue `hcl:"unauthenticated_client_action,attr"`
	// AuthSettingsActiveDirectory: optional
	ActiveDirectory *AuthSettingsActiveDirectory `hcl:"active_directory,block"`
	// AuthSettingsFacebook: optional
	Facebook *AuthSettingsFacebook `hcl:"facebook,block"`
	// AuthSettingsGithub: optional
	Github *AuthSettingsGithub `hcl:"github,block"`
	// AuthSettingsGoogle: optional
	Google *AuthSettingsGoogle `hcl:"google,block"`
	// AuthSettingsMicrosoft: optional
	Microsoft *AuthSettingsMicrosoft `hcl:"microsoft,block"`
	// AuthSettingsTwitter: optional
	Twitter *AuthSettingsTwitter `hcl:"twitter,block"`
}

type AuthSettingsActiveDirectory

type AuthSettingsActiveDirectory struct {
	// AllowedAudiences: list of string, optional
	AllowedAudiences terra.ListValue[terra.StringValue] `hcl:"allowed_audiences,attr"`
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecret: string, optional
	ClientSecret terra.StringValue `hcl:"client_secret,attr"`
	// ClientSecretSettingName: string, optional
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr"`
}

type AuthSettingsActiveDirectoryAttributes

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

func (AuthSettingsActiveDirectoryAttributes) AllowedAudiences

func (AuthSettingsActiveDirectoryAttributes) ClientId

func (AuthSettingsActiveDirectoryAttributes) ClientSecret

func (AuthSettingsActiveDirectoryAttributes) ClientSecretSettingName

func (ad AuthSettingsActiveDirectoryAttributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsActiveDirectoryAttributes) InternalRef

func (AuthSettingsActiveDirectoryAttributes) InternalTokens

func (AuthSettingsActiveDirectoryAttributes) InternalWithRef

type AuthSettingsActiveDirectoryState

type AuthSettingsActiveDirectoryState struct {
	AllowedAudiences        []string `json:"allowed_audiences"`
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
}

type AuthSettingsAttributes

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

func (AuthSettingsAttributes) ActiveDirectory

func (AuthSettingsAttributes) AdditionalLoginParameters

func (as AuthSettingsAttributes) AdditionalLoginParameters() terra.MapValue[terra.StringValue]

func (AuthSettingsAttributes) AllowedExternalRedirectUrls

func (as AuthSettingsAttributes) AllowedExternalRedirectUrls() terra.ListValue[terra.StringValue]

func (AuthSettingsAttributes) DefaultProvider

func (as AuthSettingsAttributes) DefaultProvider() terra.StringValue

func (AuthSettingsAttributes) Enabled

func (as AuthSettingsAttributes) Enabled() terra.BoolValue

func (AuthSettingsAttributes) Facebook

func (AuthSettingsAttributes) Github

func (AuthSettingsAttributes) Google

func (AuthSettingsAttributes) InternalRef

func (as AuthSettingsAttributes) InternalRef() (terra.Reference, error)

func (AuthSettingsAttributes) InternalTokens

func (as AuthSettingsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsAttributes) InternalWithRef

func (AuthSettingsAttributes) Issuer

func (AuthSettingsAttributes) Microsoft

func (AuthSettingsAttributes) RuntimeVersion

func (as AuthSettingsAttributes) RuntimeVersion() terra.StringValue

func (AuthSettingsAttributes) TokenRefreshExtensionHours

func (as AuthSettingsAttributes) TokenRefreshExtensionHours() terra.NumberValue

func (AuthSettingsAttributes) TokenStoreEnabled

func (as AuthSettingsAttributes) TokenStoreEnabled() terra.BoolValue

func (AuthSettingsAttributes) Twitter

func (AuthSettingsAttributes) UnauthenticatedClientAction

func (as AuthSettingsAttributes) UnauthenticatedClientAction() terra.StringValue

type AuthSettingsFacebook

type AuthSettingsFacebook struct {
	// AppId: string, required
	AppId terra.StringValue `hcl:"app_id,attr" validate:"required"`
	// AppSecret: string, optional
	AppSecret terra.StringValue `hcl:"app_secret,attr"`
	// AppSecretSettingName: string, optional
	AppSecretSettingName terra.StringValue `hcl:"app_secret_setting_name,attr"`
	// OauthScopes: list of string, optional
	OauthScopes terra.ListValue[terra.StringValue] `hcl:"oauth_scopes,attr"`
}

type AuthSettingsFacebookAttributes

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

func (AuthSettingsFacebookAttributes) AppId

func (AuthSettingsFacebookAttributes) AppSecret

func (AuthSettingsFacebookAttributes) AppSecretSettingName

func (f AuthSettingsFacebookAttributes) AppSecretSettingName() terra.StringValue

func (AuthSettingsFacebookAttributes) InternalRef

func (AuthSettingsFacebookAttributes) InternalTokens

func (f AuthSettingsFacebookAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsFacebookAttributes) InternalWithRef

func (AuthSettingsFacebookAttributes) OauthScopes

type AuthSettingsFacebookState

type AuthSettingsFacebookState struct {
	AppId                string   `json:"app_id"`
	AppSecret            string   `json:"app_secret"`
	AppSecretSettingName string   `json:"app_secret_setting_name"`
	OauthScopes          []string `json:"oauth_scopes"`
}

type AuthSettingsGithub

type AuthSettingsGithub struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecret: string, optional
	ClientSecret terra.StringValue `hcl:"client_secret,attr"`
	// ClientSecretSettingName: string, optional
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr"`
	// OauthScopes: list of string, optional
	OauthScopes terra.ListValue[terra.StringValue] `hcl:"oauth_scopes,attr"`
}

type AuthSettingsGithubAttributes

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

func (AuthSettingsGithubAttributes) ClientId

func (AuthSettingsGithubAttributes) ClientSecret

func (AuthSettingsGithubAttributes) ClientSecretSettingName

func (g AuthSettingsGithubAttributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsGithubAttributes) InternalRef

func (AuthSettingsGithubAttributes) InternalTokens

func (g AuthSettingsGithubAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsGithubAttributes) InternalWithRef

func (AuthSettingsGithubAttributes) OauthScopes

type AuthSettingsGithubState

type AuthSettingsGithubState struct {
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	OauthScopes             []string `json:"oauth_scopes"`
}

type AuthSettingsGoogle

type AuthSettingsGoogle struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecret: string, optional
	ClientSecret terra.StringValue `hcl:"client_secret,attr"`
	// ClientSecretSettingName: string, optional
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr"`
	// OauthScopes: list of string, optional
	OauthScopes terra.ListValue[terra.StringValue] `hcl:"oauth_scopes,attr"`
}

type AuthSettingsGoogleAttributes

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

func (AuthSettingsGoogleAttributes) ClientId

func (AuthSettingsGoogleAttributes) ClientSecret

func (AuthSettingsGoogleAttributes) ClientSecretSettingName

func (g AuthSettingsGoogleAttributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsGoogleAttributes) InternalRef

func (AuthSettingsGoogleAttributes) InternalTokens

func (g AuthSettingsGoogleAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsGoogleAttributes) InternalWithRef

func (AuthSettingsGoogleAttributes) OauthScopes

type AuthSettingsGoogleState

type AuthSettingsGoogleState struct {
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	OauthScopes             []string `json:"oauth_scopes"`
}

type AuthSettingsMicrosoft

type AuthSettingsMicrosoft struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecret: string, optional
	ClientSecret terra.StringValue `hcl:"client_secret,attr"`
	// ClientSecretSettingName: string, optional
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr"`
	// OauthScopes: list of string, optional
	OauthScopes terra.ListValue[terra.StringValue] `hcl:"oauth_scopes,attr"`
}

type AuthSettingsMicrosoftAttributes

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

func (AuthSettingsMicrosoftAttributes) ClientId

func (AuthSettingsMicrosoftAttributes) ClientSecret

func (AuthSettingsMicrosoftAttributes) ClientSecretSettingName

func (m AuthSettingsMicrosoftAttributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsMicrosoftAttributes) InternalRef

func (AuthSettingsMicrosoftAttributes) InternalTokens

func (m AuthSettingsMicrosoftAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsMicrosoftAttributes) InternalWithRef

func (AuthSettingsMicrosoftAttributes) OauthScopes

type AuthSettingsMicrosoftState

type AuthSettingsMicrosoftState struct {
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	OauthScopes             []string `json:"oauth_scopes"`
}

type AuthSettingsState

type AuthSettingsState struct {
	AdditionalLoginParameters   map[string]string                  `json:"additional_login_parameters"`
	AllowedExternalRedirectUrls []string                           `json:"allowed_external_redirect_urls"`
	DefaultProvider             string                             `json:"default_provider"`
	Enabled                     bool                               `json:"enabled"`
	Issuer                      string                             `json:"issuer"`
	RuntimeVersion              string                             `json:"runtime_version"`
	TokenRefreshExtensionHours  float64                            `json:"token_refresh_extension_hours"`
	TokenStoreEnabled           bool                               `json:"token_store_enabled"`
	UnauthenticatedClientAction string                             `json:"unauthenticated_client_action"`
	ActiveDirectory             []AuthSettingsActiveDirectoryState `json:"active_directory"`
	Facebook                    []AuthSettingsFacebookState        `json:"facebook"`
	Github                      []AuthSettingsGithubState          `json:"github"`
	Google                      []AuthSettingsGoogleState          `json:"google"`
	Microsoft                   []AuthSettingsMicrosoftState       `json:"microsoft"`
	Twitter                     []AuthSettingsTwitterState         `json:"twitter"`
}

type AuthSettingsTwitter

type AuthSettingsTwitter struct {
	// ConsumerKey: string, required
	ConsumerKey terra.StringValue `hcl:"consumer_key,attr" validate:"required"`
	// ConsumerSecret: string, optional
	ConsumerSecret terra.StringValue `hcl:"consumer_secret,attr"`
	// ConsumerSecretSettingName: string, optional
	ConsumerSecretSettingName terra.StringValue `hcl:"consumer_secret_setting_name,attr"`
}

type AuthSettingsTwitterAttributes

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

func (AuthSettingsTwitterAttributes) ConsumerKey

func (AuthSettingsTwitterAttributes) ConsumerSecret

func (t AuthSettingsTwitterAttributes) ConsumerSecret() terra.StringValue

func (AuthSettingsTwitterAttributes) ConsumerSecretSettingName

func (t AuthSettingsTwitterAttributes) ConsumerSecretSettingName() terra.StringValue

func (AuthSettingsTwitterAttributes) InternalRef

func (AuthSettingsTwitterAttributes) InternalTokens

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

func (AuthSettingsTwitterAttributes) InternalWithRef

type AuthSettingsTwitterState

type AuthSettingsTwitterState struct {
	ConsumerKey               string `json:"consumer_key"`
	ConsumerSecret            string `json:"consumer_secret"`
	ConsumerSecretSettingName string `json:"consumer_secret_setting_name"`
}

type AuthSettingsV2

type AuthSettingsV2 struct {
	// AuthEnabled: bool, optional
	AuthEnabled terra.BoolValue `hcl:"auth_enabled,attr"`
	// ConfigFilePath: string, optional
	ConfigFilePath terra.StringValue `hcl:"config_file_path,attr"`
	// DefaultProvider: string, optional
	DefaultProvider terra.StringValue `hcl:"default_provider,attr"`
	// ExcludedPaths: list of string, optional
	ExcludedPaths terra.ListValue[terra.StringValue] `hcl:"excluded_paths,attr"`
	// ForwardProxyConvention: string, optional
	ForwardProxyConvention terra.StringValue `hcl:"forward_proxy_convention,attr"`
	// ForwardProxyCustomHostHeaderName: string, optional
	ForwardProxyCustomHostHeaderName terra.StringValue `hcl:"forward_proxy_custom_host_header_name,attr"`
	// ForwardProxyCustomSchemeHeaderName: string, optional
	ForwardProxyCustomSchemeHeaderName terra.StringValue `hcl:"forward_proxy_custom_scheme_header_name,attr"`
	// HttpRouteApiPrefix: string, optional
	HttpRouteApiPrefix terra.StringValue `hcl:"http_route_api_prefix,attr"`
	// RequireAuthentication: bool, optional
	RequireAuthentication terra.BoolValue `hcl:"require_authentication,attr"`
	// RequireHttps: bool, optional
	RequireHttps terra.BoolValue `hcl:"require_https,attr"`
	// RuntimeVersion: string, optional
	RuntimeVersion terra.StringValue `hcl:"runtime_version,attr"`
	// UnauthenticatedAction: string, optional
	UnauthenticatedAction terra.StringValue `hcl:"unauthenticated_action,attr"`
	// AuthSettingsV2ActiveDirectoryV2: optional
	ActiveDirectoryV2 *AuthSettingsV2ActiveDirectoryV2 `hcl:"active_directory_v2,block"`
	// AuthSettingsV2AppleV2: optional
	AppleV2 *AuthSettingsV2AppleV2 `hcl:"apple_v2,block"`
	// AuthSettingsV2AzureStaticWebAppV2: optional
	AzureStaticWebAppV2 *AuthSettingsV2AzureStaticWebAppV2 `hcl:"azure_static_web_app_v2,block"`
	// AuthSettingsV2CustomOidcV2: min=0
	CustomOidcV2 []AuthSettingsV2CustomOidcV2 `hcl:"custom_oidc_v2,block" validate:"min=0"`
	// AuthSettingsV2FacebookV2: optional
	FacebookV2 *AuthSettingsV2FacebookV2 `hcl:"facebook_v2,block"`
	// AuthSettingsV2GithubV2: optional
	GithubV2 *AuthSettingsV2GithubV2 `hcl:"github_v2,block"`
	// AuthSettingsV2GoogleV2: optional
	GoogleV2 *AuthSettingsV2GoogleV2 `hcl:"google_v2,block"`
	// AuthSettingsV2Login: required
	Login *AuthSettingsV2Login `hcl:"login,block" validate:"required"`
	// AuthSettingsV2MicrosoftV2: optional
	MicrosoftV2 *AuthSettingsV2MicrosoftV2 `hcl:"microsoft_v2,block"`
	// AuthSettingsV2TwitterV2: optional
	TwitterV2 *AuthSettingsV2TwitterV2 `hcl:"twitter_v2,block"`
}

type AuthSettingsV2ActiveDirectoryV2

type AuthSettingsV2ActiveDirectoryV2 struct {
	// AllowedApplications: list of string, optional
	AllowedApplications terra.ListValue[terra.StringValue] `hcl:"allowed_applications,attr"`
	// AllowedAudiences: list of string, optional
	AllowedAudiences terra.ListValue[terra.StringValue] `hcl:"allowed_audiences,attr"`
	// AllowedGroups: list of string, optional
	AllowedGroups terra.ListValue[terra.StringValue] `hcl:"allowed_groups,attr"`
	// AllowedIdentities: list of string, optional
	AllowedIdentities terra.ListValue[terra.StringValue] `hcl:"allowed_identities,attr"`
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecretCertificateThumbprint: string, optional
	ClientSecretCertificateThumbprint terra.StringValue `hcl:"client_secret_certificate_thumbprint,attr"`
	// ClientSecretSettingName: string, optional
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr"`
	// JwtAllowedClientApplications: list of string, optional
	JwtAllowedClientApplications terra.ListValue[terra.StringValue] `hcl:"jwt_allowed_client_applications,attr"`
	// JwtAllowedGroups: list of string, optional
	JwtAllowedGroups terra.ListValue[terra.StringValue] `hcl:"jwt_allowed_groups,attr"`
	// LoginParameters: map of string, optional
	LoginParameters terra.MapValue[terra.StringValue] `hcl:"login_parameters,attr"`
	// TenantAuthEndpoint: string, required
	TenantAuthEndpoint terra.StringValue `hcl:"tenant_auth_endpoint,attr" validate:"required"`
	// WwwAuthenticationDisabled: bool, optional
	WwwAuthenticationDisabled terra.BoolValue `hcl:"www_authentication_disabled,attr"`
}

type AuthSettingsV2ActiveDirectoryV2Attributes

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

func (AuthSettingsV2ActiveDirectoryV2Attributes) AllowedApplications

func (AuthSettingsV2ActiveDirectoryV2Attributes) AllowedAudiences

func (AuthSettingsV2ActiveDirectoryV2Attributes) AllowedGroups

func (AuthSettingsV2ActiveDirectoryV2Attributes) AllowedIdentities

func (AuthSettingsV2ActiveDirectoryV2Attributes) ClientId

func (AuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretCertificateThumbprint

func (adv AuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretCertificateThumbprint() terra.StringValue

func (AuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretSettingName

func (adv AuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsV2ActiveDirectoryV2Attributes) InternalRef

func (AuthSettingsV2ActiveDirectoryV2Attributes) InternalTokens

func (AuthSettingsV2ActiveDirectoryV2Attributes) InternalWithRef

func (AuthSettingsV2ActiveDirectoryV2Attributes) JwtAllowedClientApplications

func (adv AuthSettingsV2ActiveDirectoryV2Attributes) JwtAllowedClientApplications() terra.ListValue[terra.StringValue]

func (AuthSettingsV2ActiveDirectoryV2Attributes) JwtAllowedGroups

func (AuthSettingsV2ActiveDirectoryV2Attributes) LoginParameters

func (AuthSettingsV2ActiveDirectoryV2Attributes) TenantAuthEndpoint

func (AuthSettingsV2ActiveDirectoryV2Attributes) WwwAuthenticationDisabled

func (adv AuthSettingsV2ActiveDirectoryV2Attributes) WwwAuthenticationDisabled() terra.BoolValue

type AuthSettingsV2ActiveDirectoryV2State

type AuthSettingsV2ActiveDirectoryV2State struct {
	AllowedApplications               []string          `json:"allowed_applications"`
	AllowedAudiences                  []string          `json:"allowed_audiences"`
	AllowedGroups                     []string          `json:"allowed_groups"`
	AllowedIdentities                 []string          `json:"allowed_identities"`
	ClientId                          string            `json:"client_id"`
	ClientSecretCertificateThumbprint string            `json:"client_secret_certificate_thumbprint"`
	ClientSecretSettingName           string            `json:"client_secret_setting_name"`
	JwtAllowedClientApplications      []string          `json:"jwt_allowed_client_applications"`
	JwtAllowedGroups                  []string          `json:"jwt_allowed_groups"`
	LoginParameters                   map[string]string `json:"login_parameters"`
	TenantAuthEndpoint                string            `json:"tenant_auth_endpoint"`
	WwwAuthenticationDisabled         bool              `json:"www_authentication_disabled"`
}

type AuthSettingsV2AppleV2

type AuthSettingsV2AppleV2 struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecretSettingName: string, required
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr" validate:"required"`
}

type AuthSettingsV2AppleV2Attributes

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

func (AuthSettingsV2AppleV2Attributes) ClientId

func (AuthSettingsV2AppleV2Attributes) ClientSecretSettingName

func (av AuthSettingsV2AppleV2Attributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsV2AppleV2Attributes) InternalRef

func (AuthSettingsV2AppleV2Attributes) InternalTokens

func (av AuthSettingsV2AppleV2Attributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsV2AppleV2Attributes) InternalWithRef

func (AuthSettingsV2AppleV2Attributes) LoginScopes

type AuthSettingsV2AppleV2State

type AuthSettingsV2AppleV2State struct {
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type AuthSettingsV2Attributes

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

func (AuthSettingsV2Attributes) ActiveDirectoryV2

func (AuthSettingsV2Attributes) AppleV2

func (AuthSettingsV2Attributes) AuthEnabled

func (asv AuthSettingsV2Attributes) AuthEnabled() terra.BoolValue

func (AuthSettingsV2Attributes) AzureStaticWebAppV2

func (AuthSettingsV2Attributes) ConfigFilePath

func (asv AuthSettingsV2Attributes) ConfigFilePath() terra.StringValue

func (AuthSettingsV2Attributes) CustomOidcV2

func (AuthSettingsV2Attributes) DefaultProvider

func (asv AuthSettingsV2Attributes) DefaultProvider() terra.StringValue

func (AuthSettingsV2Attributes) ExcludedPaths

func (AuthSettingsV2Attributes) FacebookV2

func (AuthSettingsV2Attributes) ForwardProxyConvention

func (asv AuthSettingsV2Attributes) ForwardProxyConvention() terra.StringValue

func (AuthSettingsV2Attributes) ForwardProxyCustomHostHeaderName

func (asv AuthSettingsV2Attributes) ForwardProxyCustomHostHeaderName() terra.StringValue

func (AuthSettingsV2Attributes) ForwardProxyCustomSchemeHeaderName

func (asv AuthSettingsV2Attributes) ForwardProxyCustomSchemeHeaderName() terra.StringValue

func (AuthSettingsV2Attributes) GithubV2

func (AuthSettingsV2Attributes) GoogleV2

func (AuthSettingsV2Attributes) HttpRouteApiPrefix

func (asv AuthSettingsV2Attributes) HttpRouteApiPrefix() terra.StringValue

func (AuthSettingsV2Attributes) InternalRef

func (asv AuthSettingsV2Attributes) InternalRef() (terra.Reference, error)

func (AuthSettingsV2Attributes) InternalTokens

func (asv AuthSettingsV2Attributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsV2Attributes) InternalWithRef

func (AuthSettingsV2Attributes) Login

func (AuthSettingsV2Attributes) MicrosoftV2

func (AuthSettingsV2Attributes) RequireAuthentication

func (asv AuthSettingsV2Attributes) RequireAuthentication() terra.BoolValue

func (AuthSettingsV2Attributes) RequireHttps

func (asv AuthSettingsV2Attributes) RequireHttps() terra.BoolValue

func (AuthSettingsV2Attributes) RuntimeVersion

func (asv AuthSettingsV2Attributes) RuntimeVersion() terra.StringValue

func (AuthSettingsV2Attributes) TwitterV2

func (AuthSettingsV2Attributes) UnauthenticatedAction

func (asv AuthSettingsV2Attributes) UnauthenticatedAction() terra.StringValue

type AuthSettingsV2AzureStaticWebAppV2

type AuthSettingsV2AzureStaticWebAppV2 struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
}

type AuthSettingsV2AzureStaticWebAppV2Attributes

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

func (AuthSettingsV2AzureStaticWebAppV2Attributes) ClientId

func (AuthSettingsV2AzureStaticWebAppV2Attributes) InternalRef

func (AuthSettingsV2AzureStaticWebAppV2Attributes) InternalTokens

func (AuthSettingsV2AzureStaticWebAppV2Attributes) InternalWithRef

type AuthSettingsV2AzureStaticWebAppV2State

type AuthSettingsV2AzureStaticWebAppV2State struct {
	ClientId string `json:"client_id"`
}

type AuthSettingsV2CustomOidcV2

type AuthSettingsV2CustomOidcV2 struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// NameClaimType: string, optional
	NameClaimType terra.StringValue `hcl:"name_claim_type,attr"`
	// OpenidConfigurationEndpoint: string, required
	OpenidConfigurationEndpoint terra.StringValue `hcl:"openid_configuration_endpoint,attr" validate:"required"`
	// Scopes: list of string, optional
	Scopes terra.ListValue[terra.StringValue] `hcl:"scopes,attr"`
}

type AuthSettingsV2CustomOidcV2Attributes

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

func (AuthSettingsV2CustomOidcV2Attributes) AuthorisationEndpoint

func (cov AuthSettingsV2CustomOidcV2Attributes) AuthorisationEndpoint() terra.StringValue

func (AuthSettingsV2CustomOidcV2Attributes) CertificationUri

func (AuthSettingsV2CustomOidcV2Attributes) ClientCredentialMethod

func (cov AuthSettingsV2CustomOidcV2Attributes) ClientCredentialMethod() terra.StringValue

func (AuthSettingsV2CustomOidcV2Attributes) ClientId

func (AuthSettingsV2CustomOidcV2Attributes) ClientSecretSettingName

func (cov AuthSettingsV2CustomOidcV2Attributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsV2CustomOidcV2Attributes) InternalRef

func (AuthSettingsV2CustomOidcV2Attributes) InternalTokens

func (AuthSettingsV2CustomOidcV2Attributes) InternalWithRef

func (AuthSettingsV2CustomOidcV2Attributes) IssuerEndpoint

func (AuthSettingsV2CustomOidcV2Attributes) Name

func (AuthSettingsV2CustomOidcV2Attributes) NameClaimType

func (AuthSettingsV2CustomOidcV2Attributes) OpenidConfigurationEndpoint

func (cov AuthSettingsV2CustomOidcV2Attributes) OpenidConfigurationEndpoint() terra.StringValue

func (AuthSettingsV2CustomOidcV2Attributes) Scopes

func (AuthSettingsV2CustomOidcV2Attributes) TokenEndpoint

type AuthSettingsV2CustomOidcV2State

type AuthSettingsV2CustomOidcV2State struct {
	AuthorisationEndpoint       string   `json:"authorisation_endpoint"`
	CertificationUri            string   `json:"certification_uri"`
	ClientCredentialMethod      string   `json:"client_credential_method"`
	ClientId                    string   `json:"client_id"`
	ClientSecretSettingName     string   `json:"client_secret_setting_name"`
	IssuerEndpoint              string   `json:"issuer_endpoint"`
	Name                        string   `json:"name"`
	NameClaimType               string   `json:"name_claim_type"`
	OpenidConfigurationEndpoint string   `json:"openid_configuration_endpoint"`
	Scopes                      []string `json:"scopes"`
	TokenEndpoint               string   `json:"token_endpoint"`
}

type AuthSettingsV2FacebookV2

type AuthSettingsV2FacebookV2 struct {
	// AppId: string, required
	AppId terra.StringValue `hcl:"app_id,attr" validate:"required"`
	// AppSecretSettingName: string, required
	AppSecretSettingName terra.StringValue `hcl:"app_secret_setting_name,attr" validate:"required"`
	// GraphApiVersion: string, optional
	GraphApiVersion terra.StringValue `hcl:"graph_api_version,attr"`
	// LoginScopes: list of string, optional
	LoginScopes terra.ListValue[terra.StringValue] `hcl:"login_scopes,attr"`
}

type AuthSettingsV2FacebookV2Attributes

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

func (AuthSettingsV2FacebookV2Attributes) AppId

func (AuthSettingsV2FacebookV2Attributes) AppSecretSettingName

func (fv AuthSettingsV2FacebookV2Attributes) AppSecretSettingName() terra.StringValue

func (AuthSettingsV2FacebookV2Attributes) GraphApiVersion

func (AuthSettingsV2FacebookV2Attributes) InternalRef

func (AuthSettingsV2FacebookV2Attributes) InternalTokens

func (AuthSettingsV2FacebookV2Attributes) InternalWithRef

func (AuthSettingsV2FacebookV2Attributes) LoginScopes

type AuthSettingsV2FacebookV2State

type AuthSettingsV2FacebookV2State struct {
	AppId                string   `json:"app_id"`
	AppSecretSettingName string   `json:"app_secret_setting_name"`
	GraphApiVersion      string   `json:"graph_api_version"`
	LoginScopes          []string `json:"login_scopes"`
}

type AuthSettingsV2GithubV2

type AuthSettingsV2GithubV2 struct {
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecretSettingName: string, required
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr" validate:"required"`
	// LoginScopes: list of string, optional
	LoginScopes terra.ListValue[terra.StringValue] `hcl:"login_scopes,attr"`
}

type AuthSettingsV2GithubV2Attributes

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

func (AuthSettingsV2GithubV2Attributes) ClientId

func (AuthSettingsV2GithubV2Attributes) ClientSecretSettingName

func (gv AuthSettingsV2GithubV2Attributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsV2GithubV2Attributes) InternalRef

func (AuthSettingsV2GithubV2Attributes) InternalTokens

func (gv AuthSettingsV2GithubV2Attributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsV2GithubV2Attributes) InternalWithRef

func (AuthSettingsV2GithubV2Attributes) LoginScopes

type AuthSettingsV2GithubV2State

type AuthSettingsV2GithubV2State struct {
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type AuthSettingsV2GoogleV2

type AuthSettingsV2GoogleV2 struct {
	// AllowedAudiences: list of string, optional
	AllowedAudiences terra.ListValue[terra.StringValue] `hcl:"allowed_audiences,attr"`
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecretSettingName: string, required
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr" validate:"required"`
	// LoginScopes: list of string, optional
	LoginScopes terra.ListValue[terra.StringValue] `hcl:"login_scopes,attr"`
}

type AuthSettingsV2GoogleV2Attributes

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

func (AuthSettingsV2GoogleV2Attributes) AllowedAudiences

func (AuthSettingsV2GoogleV2Attributes) ClientId

func (AuthSettingsV2GoogleV2Attributes) ClientSecretSettingName

func (gv AuthSettingsV2GoogleV2Attributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsV2GoogleV2Attributes) InternalRef

func (AuthSettingsV2GoogleV2Attributes) InternalTokens

func (gv AuthSettingsV2GoogleV2Attributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsV2GoogleV2Attributes) InternalWithRef

func (AuthSettingsV2GoogleV2Attributes) LoginScopes

type AuthSettingsV2GoogleV2State

type AuthSettingsV2GoogleV2State struct {
	AllowedAudiences        []string `json:"allowed_audiences"`
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type AuthSettingsV2Login

type AuthSettingsV2Login struct {
	// AllowedExternalRedirectUrls: list of string, optional
	AllowedExternalRedirectUrls terra.ListValue[terra.StringValue] `hcl:"allowed_external_redirect_urls,attr"`
	// CookieExpirationConvention: string, optional
	CookieExpirationConvention terra.StringValue `hcl:"cookie_expiration_convention,attr"`
	// CookieExpirationTime: string, optional
	CookieExpirationTime terra.StringValue `hcl:"cookie_expiration_time,attr"`
	// LogoutEndpoint: string, optional
	LogoutEndpoint terra.StringValue `hcl:"logout_endpoint,attr"`
	// NonceExpirationTime: string, optional
	NonceExpirationTime terra.StringValue `hcl:"nonce_expiration_time,attr"`
	// PreserveUrlFragmentsForLogins: bool, optional
	PreserveUrlFragmentsForLogins terra.BoolValue `hcl:"preserve_url_fragments_for_logins,attr"`
	// TokenRefreshExtensionTime: number, optional
	TokenRefreshExtensionTime terra.NumberValue `hcl:"token_refresh_extension_time,attr"`
	// TokenStoreEnabled: bool, optional
	TokenStoreEnabled terra.BoolValue `hcl:"token_store_enabled,attr"`
	// TokenStorePath: string, optional
	TokenStorePath terra.StringValue `hcl:"token_store_path,attr"`
	// TokenStoreSasSettingName: string, optional
	TokenStoreSasSettingName terra.StringValue `hcl:"token_store_sas_setting_name,attr"`
	// ValidateNonce: bool, optional
	ValidateNonce terra.BoolValue `hcl:"validate_nonce,attr"`
}

type AuthSettingsV2LoginAttributes

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

func (AuthSettingsV2LoginAttributes) AllowedExternalRedirectUrls

func (l AuthSettingsV2LoginAttributes) AllowedExternalRedirectUrls() terra.ListValue[terra.StringValue]

func (AuthSettingsV2LoginAttributes) CookieExpirationConvention

func (l AuthSettingsV2LoginAttributes) CookieExpirationConvention() terra.StringValue

func (AuthSettingsV2LoginAttributes) CookieExpirationTime

func (l AuthSettingsV2LoginAttributes) CookieExpirationTime() terra.StringValue

func (AuthSettingsV2LoginAttributes) InternalRef

func (AuthSettingsV2LoginAttributes) InternalTokens

func (l AuthSettingsV2LoginAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsV2LoginAttributes) InternalWithRef

func (AuthSettingsV2LoginAttributes) LogoutEndpoint

func (l AuthSettingsV2LoginAttributes) LogoutEndpoint() terra.StringValue

func (AuthSettingsV2LoginAttributes) NonceExpirationTime

func (l AuthSettingsV2LoginAttributes) NonceExpirationTime() terra.StringValue

func (AuthSettingsV2LoginAttributes) PreserveUrlFragmentsForLogins

func (l AuthSettingsV2LoginAttributes) PreserveUrlFragmentsForLogins() terra.BoolValue

func (AuthSettingsV2LoginAttributes) TokenRefreshExtensionTime

func (l AuthSettingsV2LoginAttributes) TokenRefreshExtensionTime() terra.NumberValue

func (AuthSettingsV2LoginAttributes) TokenStoreEnabled

func (l AuthSettingsV2LoginAttributes) TokenStoreEnabled() terra.BoolValue

func (AuthSettingsV2LoginAttributes) TokenStorePath

func (l AuthSettingsV2LoginAttributes) TokenStorePath() terra.StringValue

func (AuthSettingsV2LoginAttributes) TokenStoreSasSettingName

func (l AuthSettingsV2LoginAttributes) TokenStoreSasSettingName() terra.StringValue

func (AuthSettingsV2LoginAttributes) ValidateNonce

func (l AuthSettingsV2LoginAttributes) ValidateNonce() terra.BoolValue

type AuthSettingsV2LoginState

type AuthSettingsV2LoginState struct {
	AllowedExternalRedirectUrls   []string `json:"allowed_external_redirect_urls"`
	CookieExpirationConvention    string   `json:"cookie_expiration_convention"`
	CookieExpirationTime          string   `json:"cookie_expiration_time"`
	LogoutEndpoint                string   `json:"logout_endpoint"`
	NonceExpirationTime           string   `json:"nonce_expiration_time"`
	PreserveUrlFragmentsForLogins bool     `json:"preserve_url_fragments_for_logins"`
	TokenRefreshExtensionTime     float64  `json:"token_refresh_extension_time"`
	TokenStoreEnabled             bool     `json:"token_store_enabled"`
	TokenStorePath                string   `json:"token_store_path"`
	TokenStoreSasSettingName      string   `json:"token_store_sas_setting_name"`
	ValidateNonce                 bool     `json:"validate_nonce"`
}

type AuthSettingsV2MicrosoftV2

type AuthSettingsV2MicrosoftV2 struct {
	// AllowedAudiences: list of string, optional
	AllowedAudiences terra.ListValue[terra.StringValue] `hcl:"allowed_audiences,attr"`
	// ClientId: string, required
	ClientId terra.StringValue `hcl:"client_id,attr" validate:"required"`
	// ClientSecretSettingName: string, required
	ClientSecretSettingName terra.StringValue `hcl:"client_secret_setting_name,attr" validate:"required"`
	// LoginScopes: list of string, optional
	LoginScopes terra.ListValue[terra.StringValue] `hcl:"login_scopes,attr"`
}

type AuthSettingsV2MicrosoftV2Attributes

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

func (AuthSettingsV2MicrosoftV2Attributes) AllowedAudiences

func (AuthSettingsV2MicrosoftV2Attributes) ClientId

func (AuthSettingsV2MicrosoftV2Attributes) ClientSecretSettingName

func (mv AuthSettingsV2MicrosoftV2Attributes) ClientSecretSettingName() terra.StringValue

func (AuthSettingsV2MicrosoftV2Attributes) InternalRef

func (AuthSettingsV2MicrosoftV2Attributes) InternalTokens

func (AuthSettingsV2MicrosoftV2Attributes) InternalWithRef

func (AuthSettingsV2MicrosoftV2Attributes) LoginScopes

type AuthSettingsV2MicrosoftV2State

type AuthSettingsV2MicrosoftV2State struct {
	AllowedAudiences        []string `json:"allowed_audiences"`
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type AuthSettingsV2State

type AuthSettingsV2State struct {
	AuthEnabled                        bool                                     `json:"auth_enabled"`
	ConfigFilePath                     string                                   `json:"config_file_path"`
	DefaultProvider                    string                                   `json:"default_provider"`
	ExcludedPaths                      []string                                 `json:"excluded_paths"`
	ForwardProxyConvention             string                                   `json:"forward_proxy_convention"`
	ForwardProxyCustomHostHeaderName   string                                   `json:"forward_proxy_custom_host_header_name"`
	ForwardProxyCustomSchemeHeaderName string                                   `json:"forward_proxy_custom_scheme_header_name"`
	HttpRouteApiPrefix                 string                                   `json:"http_route_api_prefix"`
	RequireAuthentication              bool                                     `json:"require_authentication"`
	RequireHttps                       bool                                     `json:"require_https"`
	RuntimeVersion                     string                                   `json:"runtime_version"`
	UnauthenticatedAction              string                                   `json:"unauthenticated_action"`
	ActiveDirectoryV2                  []AuthSettingsV2ActiveDirectoryV2State   `json:"active_directory_v2"`
	AppleV2                            []AuthSettingsV2AppleV2State             `json:"apple_v2"`
	AzureStaticWebAppV2                []AuthSettingsV2AzureStaticWebAppV2State `json:"azure_static_web_app_v2"`
	CustomOidcV2                       []AuthSettingsV2CustomOidcV2State        `json:"custom_oidc_v2"`
	FacebookV2                         []AuthSettingsV2FacebookV2State          `json:"facebook_v2"`
	GithubV2                           []AuthSettingsV2GithubV2State            `json:"github_v2"`
	GoogleV2                           []AuthSettingsV2GoogleV2State            `json:"google_v2"`
	Login                              []AuthSettingsV2LoginState               `json:"login"`
	MicrosoftV2                        []AuthSettingsV2MicrosoftV2State         `json:"microsoft_v2"`
	TwitterV2                          []AuthSettingsV2TwitterV2State           `json:"twitter_v2"`
}

type AuthSettingsV2TwitterV2

type AuthSettingsV2TwitterV2 struct {
	// ConsumerKey: string, required
	ConsumerKey terra.StringValue `hcl:"consumer_key,attr" validate:"required"`
	// ConsumerSecretSettingName: string, required
	ConsumerSecretSettingName terra.StringValue `hcl:"consumer_secret_setting_name,attr" validate:"required"`
}

type AuthSettingsV2TwitterV2Attributes

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

func (AuthSettingsV2TwitterV2Attributes) ConsumerKey

func (AuthSettingsV2TwitterV2Attributes) ConsumerSecretSettingName

func (tv AuthSettingsV2TwitterV2Attributes) ConsumerSecretSettingName() terra.StringValue

func (AuthSettingsV2TwitterV2Attributes) InternalRef

func (AuthSettingsV2TwitterV2Attributes) InternalTokens

func (tv AuthSettingsV2TwitterV2Attributes) InternalTokens() (hclwrite.Tokens, error)

func (AuthSettingsV2TwitterV2Attributes) InternalWithRef

type AuthSettingsV2TwitterV2State

type AuthSettingsV2TwitterV2State struct {
	ConsumerKey               string `json:"consumer_key"`
	ConsumerSecretSettingName string `json:"consumer_secret_setting_name"`
}

type Backup

type Backup struct {
	// Enabled: bool, optional
	Enabled terra.BoolValue `hcl:"enabled,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// StorageAccountUrl: string, required
	StorageAccountUrl terra.StringValue `hcl:"storage_account_url,attr" validate:"required"`
	// BackupSchedule: required
	Schedule *BackupSchedule `hcl:"schedule,block" validate:"required"`
}

type BackupAttributes

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

func (BackupAttributes) Enabled

func (b BackupAttributes) Enabled() terra.BoolValue

func (BackupAttributes) InternalRef

func (b BackupAttributes) InternalRef() (terra.Reference, error)

func (BackupAttributes) InternalTokens

func (b BackupAttributes) InternalTokens() (hclwrite.Tokens, error)

func (BackupAttributes) InternalWithRef

func (b BackupAttributes) InternalWithRef(ref terra.Reference) BackupAttributes

func (BackupAttributes) Name

func (BackupAttributes) Schedule

func (BackupAttributes) StorageAccountUrl

func (b BackupAttributes) StorageAccountUrl() terra.StringValue

type BackupSchedule

type BackupSchedule struct {
	// FrequencyInterval: number, required
	FrequencyInterval terra.NumberValue `hcl:"frequency_interval,attr" validate:"required"`
	// FrequencyUnit: string, required
	FrequencyUnit terra.StringValue `hcl:"frequency_unit,attr" validate:"required"`
	// KeepAtLeastOneBackup: bool, optional
	KeepAtLeastOneBackup terra.BoolValue `hcl:"keep_at_least_one_backup,attr"`
	// RetentionPeriodDays: number, optional
	RetentionPeriodDays terra.NumberValue `hcl:"retention_period_days,attr"`
	// StartTime: string, optional
	StartTime terra.StringValue `hcl:"start_time,attr"`
}

type BackupScheduleAttributes

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

func (BackupScheduleAttributes) FrequencyInterval

func (s BackupScheduleAttributes) FrequencyInterval() terra.NumberValue

func (BackupScheduleAttributes) FrequencyUnit

func (s BackupScheduleAttributes) FrequencyUnit() terra.StringValue

func (BackupScheduleAttributes) InternalRef

func (s BackupScheduleAttributes) InternalRef() (terra.Reference, error)

func (BackupScheduleAttributes) InternalTokens

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

func (BackupScheduleAttributes) InternalWithRef

func (BackupScheduleAttributes) KeepAtLeastOneBackup

func (s BackupScheduleAttributes) KeepAtLeastOneBackup() terra.BoolValue

func (BackupScheduleAttributes) LastExecutionTime

func (s BackupScheduleAttributes) LastExecutionTime() terra.StringValue

func (BackupScheduleAttributes) RetentionPeriodDays

func (s BackupScheduleAttributes) RetentionPeriodDays() terra.NumberValue

func (BackupScheduleAttributes) StartTime

type BackupScheduleState

type BackupScheduleState struct {
	FrequencyInterval    float64 `json:"frequency_interval"`
	FrequencyUnit        string  `json:"frequency_unit"`
	KeepAtLeastOneBackup bool    `json:"keep_at_least_one_backup"`
	LastExecutionTime    string  `json:"last_execution_time"`
	RetentionPeriodDays  float64 `json:"retention_period_days"`
	StartTime            string  `json:"start_time"`
}

type BackupState

type BackupState struct {
	Enabled           bool                  `json:"enabled"`
	Name              string                `json:"name"`
	StorageAccountUrl string                `json:"storage_account_url"`
	Schedule          []BackupScheduleState `json:"schedule"`
}

type ConnectionString

type ConnectionString struct {
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// Type: string, required
	Type terra.StringValue `hcl:"type,attr" validate:"required"`
	// Value: string, required
	Value terra.StringValue `hcl:"value,attr" validate:"required"`
}

type ConnectionStringAttributes

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

func (ConnectionStringAttributes) InternalRef

func (cs ConnectionStringAttributes) InternalRef() (terra.Reference, error)

func (ConnectionStringAttributes) InternalTokens

func (cs ConnectionStringAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ConnectionStringAttributes) InternalWithRef

func (ConnectionStringAttributes) Name

func (ConnectionStringAttributes) Type

func (ConnectionStringAttributes) Value

type ConnectionStringState

type ConnectionStringState struct {
	Name  string `json:"name"`
	Type  string `json:"type"`
	Value string `json:"value"`
}

type DataArgs

type DataArgs struct {
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// ResourceGroupName: string, required
	ResourceGroupName terra.StringValue `hcl:"resource_group_name,attr" validate:"required"`
	// Timeouts: optional
	Timeouts *DataTimeouts `hcl:"timeouts,block"`
}

DataArgs contains the configurations for azurerm_windows_function_app.

type DataAuthSettingsActiveDirectoryAttributes

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

func (DataAuthSettingsActiveDirectoryAttributes) AllowedAudiences

func (DataAuthSettingsActiveDirectoryAttributes) ClientId

func (DataAuthSettingsActiveDirectoryAttributes) ClientSecret

func (DataAuthSettingsActiveDirectoryAttributes) ClientSecretSettingName

func (ad DataAuthSettingsActiveDirectoryAttributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsActiveDirectoryAttributes) InternalRef

func (DataAuthSettingsActiveDirectoryAttributes) InternalTokens

func (DataAuthSettingsActiveDirectoryAttributes) InternalWithRef

type DataAuthSettingsActiveDirectoryState

type DataAuthSettingsActiveDirectoryState struct {
	AllowedAudiences        []string `json:"allowed_audiences"`
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
}

type DataAuthSettingsAttributes

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

func (DataAuthSettingsAttributes) ActiveDirectory

func (DataAuthSettingsAttributes) AdditionalLoginParameters

func (as DataAuthSettingsAttributes) AdditionalLoginParameters() terra.MapValue[terra.StringValue]

func (DataAuthSettingsAttributes) AllowedExternalRedirectUrls

func (as DataAuthSettingsAttributes) AllowedExternalRedirectUrls() terra.ListValue[terra.StringValue]

func (DataAuthSettingsAttributes) DefaultProvider

func (as DataAuthSettingsAttributes) DefaultProvider() terra.StringValue

func (DataAuthSettingsAttributes) Enabled

func (DataAuthSettingsAttributes) Facebook

func (DataAuthSettingsAttributes) Github

func (DataAuthSettingsAttributes) Google

func (DataAuthSettingsAttributes) InternalRef

func (as DataAuthSettingsAttributes) InternalRef() (terra.Reference, error)

func (DataAuthSettingsAttributes) InternalTokens

func (as DataAuthSettingsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataAuthSettingsAttributes) InternalWithRef

func (DataAuthSettingsAttributes) Issuer

func (DataAuthSettingsAttributes) Microsoft

func (DataAuthSettingsAttributes) RuntimeVersion

func (as DataAuthSettingsAttributes) RuntimeVersion() terra.StringValue

func (DataAuthSettingsAttributes) TokenRefreshExtensionHours

func (as DataAuthSettingsAttributes) TokenRefreshExtensionHours() terra.NumberValue

func (DataAuthSettingsAttributes) TokenStoreEnabled

func (as DataAuthSettingsAttributes) TokenStoreEnabled() terra.BoolValue

func (DataAuthSettingsAttributes) Twitter

func (DataAuthSettingsAttributes) UnauthenticatedClientAction

func (as DataAuthSettingsAttributes) UnauthenticatedClientAction() terra.StringValue

type DataAuthSettingsFacebookAttributes

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

func (DataAuthSettingsFacebookAttributes) AppId

func (DataAuthSettingsFacebookAttributes) AppSecret

func (DataAuthSettingsFacebookAttributes) AppSecretSettingName

func (f DataAuthSettingsFacebookAttributes) AppSecretSettingName() terra.StringValue

func (DataAuthSettingsFacebookAttributes) InternalRef

func (DataAuthSettingsFacebookAttributes) InternalTokens

func (DataAuthSettingsFacebookAttributes) InternalWithRef

func (DataAuthSettingsFacebookAttributes) OauthScopes

type DataAuthSettingsFacebookState

type DataAuthSettingsFacebookState struct {
	AppId                string   `json:"app_id"`
	AppSecret            string   `json:"app_secret"`
	AppSecretSettingName string   `json:"app_secret_setting_name"`
	OauthScopes          []string `json:"oauth_scopes"`
}

type DataAuthSettingsGithubAttributes

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

func (DataAuthSettingsGithubAttributes) ClientId

func (DataAuthSettingsGithubAttributes) ClientSecret

func (DataAuthSettingsGithubAttributes) ClientSecretSettingName

func (g DataAuthSettingsGithubAttributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsGithubAttributes) InternalRef

func (DataAuthSettingsGithubAttributes) InternalTokens

func (g DataAuthSettingsGithubAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataAuthSettingsGithubAttributes) InternalWithRef

func (DataAuthSettingsGithubAttributes) OauthScopes

type DataAuthSettingsGithubState

type DataAuthSettingsGithubState struct {
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	OauthScopes             []string `json:"oauth_scopes"`
}

type DataAuthSettingsGoogleAttributes

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

func (DataAuthSettingsGoogleAttributes) ClientId

func (DataAuthSettingsGoogleAttributes) ClientSecret

func (DataAuthSettingsGoogleAttributes) ClientSecretSettingName

func (g DataAuthSettingsGoogleAttributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsGoogleAttributes) InternalRef

func (DataAuthSettingsGoogleAttributes) InternalTokens

func (g DataAuthSettingsGoogleAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataAuthSettingsGoogleAttributes) InternalWithRef

func (DataAuthSettingsGoogleAttributes) OauthScopes

type DataAuthSettingsGoogleState

type DataAuthSettingsGoogleState struct {
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	OauthScopes             []string `json:"oauth_scopes"`
}

type DataAuthSettingsMicrosoftAttributes

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

func (DataAuthSettingsMicrosoftAttributes) ClientId

func (DataAuthSettingsMicrosoftAttributes) ClientSecret

func (DataAuthSettingsMicrosoftAttributes) ClientSecretSettingName

func (m DataAuthSettingsMicrosoftAttributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsMicrosoftAttributes) InternalRef

func (DataAuthSettingsMicrosoftAttributes) InternalTokens

func (DataAuthSettingsMicrosoftAttributes) InternalWithRef

func (DataAuthSettingsMicrosoftAttributes) OauthScopes

type DataAuthSettingsMicrosoftState

type DataAuthSettingsMicrosoftState struct {
	ClientId                string   `json:"client_id"`
	ClientSecret            string   `json:"client_secret"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	OauthScopes             []string `json:"oauth_scopes"`
}

type DataAuthSettingsState

type DataAuthSettingsState struct {
	AdditionalLoginParameters   map[string]string                      `json:"additional_login_parameters"`
	AllowedExternalRedirectUrls []string                               `json:"allowed_external_redirect_urls"`
	DefaultProvider             string                                 `json:"default_provider"`
	Enabled                     bool                                   `json:"enabled"`
	Issuer                      string                                 `json:"issuer"`
	RuntimeVersion              string                                 `json:"runtime_version"`
	TokenRefreshExtensionHours  float64                                `json:"token_refresh_extension_hours"`
	TokenStoreEnabled           bool                                   `json:"token_store_enabled"`
	UnauthenticatedClientAction string                                 `json:"unauthenticated_client_action"`
	ActiveDirectory             []DataAuthSettingsActiveDirectoryState `json:"active_directory"`
	Facebook                    []DataAuthSettingsFacebookState        `json:"facebook"`
	Github                      []DataAuthSettingsGithubState          `json:"github"`
	Google                      []DataAuthSettingsGoogleState          `json:"google"`
	Microsoft                   []DataAuthSettingsMicrosoftState       `json:"microsoft"`
	Twitter                     []DataAuthSettingsTwitterState         `json:"twitter"`
}

type DataAuthSettingsTwitterAttributes

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

func (DataAuthSettingsTwitterAttributes) ConsumerKey

func (DataAuthSettingsTwitterAttributes) ConsumerSecret

func (DataAuthSettingsTwitterAttributes) ConsumerSecretSettingName

func (t DataAuthSettingsTwitterAttributes) ConsumerSecretSettingName() terra.StringValue

func (DataAuthSettingsTwitterAttributes) InternalRef

func (DataAuthSettingsTwitterAttributes) InternalTokens

func (DataAuthSettingsTwitterAttributes) InternalWithRef

type DataAuthSettingsTwitterState

type DataAuthSettingsTwitterState struct {
	ConsumerKey               string `json:"consumer_key"`
	ConsumerSecret            string `json:"consumer_secret"`
	ConsumerSecretSettingName string `json:"consumer_secret_setting_name"`
}

type DataAuthSettingsV2ActiveDirectoryV2Attributes

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

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) AllowedApplications

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) AllowedAudiences

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) AllowedGroups

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) AllowedIdentities

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) ClientId

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretCertificateThumbprint

func (adv DataAuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretCertificateThumbprint() terra.StringValue

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretSettingName

func (adv DataAuthSettingsV2ActiveDirectoryV2Attributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) InternalRef

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) InternalTokens

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) InternalWithRef

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) JwtAllowedClientApplications

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) JwtAllowedGroups

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) LoginParameters

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) TenantAuthEndpoint

func (DataAuthSettingsV2ActiveDirectoryV2Attributes) WwwAuthenticationDisabled

func (adv DataAuthSettingsV2ActiveDirectoryV2Attributes) WwwAuthenticationDisabled() terra.BoolValue

type DataAuthSettingsV2ActiveDirectoryV2State

type DataAuthSettingsV2ActiveDirectoryV2State struct {
	AllowedApplications               []string          `json:"allowed_applications"`
	AllowedAudiences                  []string          `json:"allowed_audiences"`
	AllowedGroups                     []string          `json:"allowed_groups"`
	AllowedIdentities                 []string          `json:"allowed_identities"`
	ClientId                          string            `json:"client_id"`
	ClientSecretCertificateThumbprint string            `json:"client_secret_certificate_thumbprint"`
	ClientSecretSettingName           string            `json:"client_secret_setting_name"`
	JwtAllowedClientApplications      []string          `json:"jwt_allowed_client_applications"`
	JwtAllowedGroups                  []string          `json:"jwt_allowed_groups"`
	LoginParameters                   map[string]string `json:"login_parameters"`
	TenantAuthEndpoint                string            `json:"tenant_auth_endpoint"`
	WwwAuthenticationDisabled         bool              `json:"www_authentication_disabled"`
}

type DataAuthSettingsV2AppleV2Attributes

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

func (DataAuthSettingsV2AppleV2Attributes) ClientId

func (DataAuthSettingsV2AppleV2Attributes) ClientSecretSettingName

func (av DataAuthSettingsV2AppleV2Attributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsV2AppleV2Attributes) InternalRef

func (DataAuthSettingsV2AppleV2Attributes) InternalTokens

func (DataAuthSettingsV2AppleV2Attributes) InternalWithRef

func (DataAuthSettingsV2AppleV2Attributes) LoginScopes

type DataAuthSettingsV2AppleV2State

type DataAuthSettingsV2AppleV2State struct {
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type DataAuthSettingsV2Attributes

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

func (DataAuthSettingsV2Attributes) ActiveDirectoryV2

func (DataAuthSettingsV2Attributes) AppleV2

func (DataAuthSettingsV2Attributes) AuthEnabled

func (asv DataAuthSettingsV2Attributes) AuthEnabled() terra.BoolValue

func (DataAuthSettingsV2Attributes) AzureStaticWebAppV2

func (DataAuthSettingsV2Attributes) ConfigFilePath

func (asv DataAuthSettingsV2Attributes) ConfigFilePath() terra.StringValue

func (DataAuthSettingsV2Attributes) CustomOidcV2

func (DataAuthSettingsV2Attributes) DefaultProvider

func (asv DataAuthSettingsV2Attributes) DefaultProvider() terra.StringValue

func (DataAuthSettingsV2Attributes) ExcludedPaths

func (DataAuthSettingsV2Attributes) FacebookV2

func (DataAuthSettingsV2Attributes) ForwardProxyConvention

func (asv DataAuthSettingsV2Attributes) ForwardProxyConvention() terra.StringValue

func (DataAuthSettingsV2Attributes) ForwardProxyCustomHostHeaderName

func (asv DataAuthSettingsV2Attributes) ForwardProxyCustomHostHeaderName() terra.StringValue

func (DataAuthSettingsV2Attributes) ForwardProxyCustomSchemeHeaderName

func (asv DataAuthSettingsV2Attributes) ForwardProxyCustomSchemeHeaderName() terra.StringValue

func (DataAuthSettingsV2Attributes) GithubV2

func (DataAuthSettingsV2Attributes) GoogleV2

func (DataAuthSettingsV2Attributes) HttpRouteApiPrefix

func (asv DataAuthSettingsV2Attributes) HttpRouteApiPrefix() terra.StringValue

func (DataAuthSettingsV2Attributes) InternalRef

func (asv DataAuthSettingsV2Attributes) InternalRef() (terra.Reference, error)

func (DataAuthSettingsV2Attributes) InternalTokens

func (asv DataAuthSettingsV2Attributes) InternalTokens() (hclwrite.Tokens, error)

func (DataAuthSettingsV2Attributes) InternalWithRef

func (DataAuthSettingsV2Attributes) Login

func (DataAuthSettingsV2Attributes) MicrosoftV2

func (DataAuthSettingsV2Attributes) RequireAuthentication

func (asv DataAuthSettingsV2Attributes) RequireAuthentication() terra.BoolValue

func (DataAuthSettingsV2Attributes) RequireHttps

func (asv DataAuthSettingsV2Attributes) RequireHttps() terra.BoolValue

func (DataAuthSettingsV2Attributes) RuntimeVersion

func (asv DataAuthSettingsV2Attributes) RuntimeVersion() terra.StringValue

func (DataAuthSettingsV2Attributes) TwitterV2

func (DataAuthSettingsV2Attributes) UnauthenticatedAction

func (asv DataAuthSettingsV2Attributes) UnauthenticatedAction() terra.StringValue

type DataAuthSettingsV2AzureStaticWebAppV2Attributes

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

func (DataAuthSettingsV2AzureStaticWebAppV2Attributes) ClientId

func (DataAuthSettingsV2AzureStaticWebAppV2Attributes) InternalRef

func (DataAuthSettingsV2AzureStaticWebAppV2Attributes) InternalTokens

func (DataAuthSettingsV2AzureStaticWebAppV2Attributes) InternalWithRef

type DataAuthSettingsV2AzureStaticWebAppV2State

type DataAuthSettingsV2AzureStaticWebAppV2State struct {
	ClientId string `json:"client_id"`
}

type DataAuthSettingsV2CustomOidcV2Attributes

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

func (DataAuthSettingsV2CustomOidcV2Attributes) AuthorisationEndpoint

func (cov DataAuthSettingsV2CustomOidcV2Attributes) AuthorisationEndpoint() terra.StringValue

func (DataAuthSettingsV2CustomOidcV2Attributes) CertificationUri

func (DataAuthSettingsV2CustomOidcV2Attributes) ClientCredentialMethod

func (cov DataAuthSettingsV2CustomOidcV2Attributes) ClientCredentialMethod() terra.StringValue

func (DataAuthSettingsV2CustomOidcV2Attributes) ClientId

func (DataAuthSettingsV2CustomOidcV2Attributes) ClientSecretSettingName

func (cov DataAuthSettingsV2CustomOidcV2Attributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsV2CustomOidcV2Attributes) InternalRef

func (DataAuthSettingsV2CustomOidcV2Attributes) InternalTokens

func (DataAuthSettingsV2CustomOidcV2Attributes) InternalWithRef

func (DataAuthSettingsV2CustomOidcV2Attributes) IssuerEndpoint

func (DataAuthSettingsV2CustomOidcV2Attributes) Name

func (DataAuthSettingsV2CustomOidcV2Attributes) NameClaimType

func (DataAuthSettingsV2CustomOidcV2Attributes) OpenidConfigurationEndpoint

func (cov DataAuthSettingsV2CustomOidcV2Attributes) OpenidConfigurationEndpoint() terra.StringValue

func (DataAuthSettingsV2CustomOidcV2Attributes) Scopes

func (DataAuthSettingsV2CustomOidcV2Attributes) TokenEndpoint

type DataAuthSettingsV2CustomOidcV2State

type DataAuthSettingsV2CustomOidcV2State struct {
	AuthorisationEndpoint       string   `json:"authorisation_endpoint"`
	CertificationUri            string   `json:"certification_uri"`
	ClientCredentialMethod      string   `json:"client_credential_method"`
	ClientId                    string   `json:"client_id"`
	ClientSecretSettingName     string   `json:"client_secret_setting_name"`
	IssuerEndpoint              string   `json:"issuer_endpoint"`
	Name                        string   `json:"name"`
	NameClaimType               string   `json:"name_claim_type"`
	OpenidConfigurationEndpoint string   `json:"openid_configuration_endpoint"`
	Scopes                      []string `json:"scopes"`
	TokenEndpoint               string   `json:"token_endpoint"`
}

type DataAuthSettingsV2FacebookV2Attributes

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

func (DataAuthSettingsV2FacebookV2Attributes) AppId

func (DataAuthSettingsV2FacebookV2Attributes) AppSecretSettingName

func (fv DataAuthSettingsV2FacebookV2Attributes) AppSecretSettingName() terra.StringValue

func (DataAuthSettingsV2FacebookV2Attributes) GraphApiVersion

func (DataAuthSettingsV2FacebookV2Attributes) InternalRef

func (DataAuthSettingsV2FacebookV2Attributes) InternalTokens

func (DataAuthSettingsV2FacebookV2Attributes) InternalWithRef

func (DataAuthSettingsV2FacebookV2Attributes) LoginScopes

type DataAuthSettingsV2FacebookV2State

type DataAuthSettingsV2FacebookV2State struct {
	AppId                string   `json:"app_id"`
	AppSecretSettingName string   `json:"app_secret_setting_name"`
	GraphApiVersion      string   `json:"graph_api_version"`
	LoginScopes          []string `json:"login_scopes"`
}

type DataAuthSettingsV2GithubV2Attributes

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

func (DataAuthSettingsV2GithubV2Attributes) ClientId

func (DataAuthSettingsV2GithubV2Attributes) ClientSecretSettingName

func (gv DataAuthSettingsV2GithubV2Attributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsV2GithubV2Attributes) InternalRef

func (DataAuthSettingsV2GithubV2Attributes) InternalTokens

func (DataAuthSettingsV2GithubV2Attributes) InternalWithRef

func (DataAuthSettingsV2GithubV2Attributes) LoginScopes

type DataAuthSettingsV2GithubV2State

type DataAuthSettingsV2GithubV2State struct {
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type DataAuthSettingsV2GoogleV2Attributes

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

func (DataAuthSettingsV2GoogleV2Attributes) AllowedAudiences

func (DataAuthSettingsV2GoogleV2Attributes) ClientId

func (DataAuthSettingsV2GoogleV2Attributes) ClientSecretSettingName

func (gv DataAuthSettingsV2GoogleV2Attributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsV2GoogleV2Attributes) InternalRef

func (DataAuthSettingsV2GoogleV2Attributes) InternalTokens

func (DataAuthSettingsV2GoogleV2Attributes) InternalWithRef

func (DataAuthSettingsV2GoogleV2Attributes) LoginScopes

type DataAuthSettingsV2GoogleV2State

type DataAuthSettingsV2GoogleV2State struct {
	AllowedAudiences        []string `json:"allowed_audiences"`
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type DataAuthSettingsV2LoginAttributes

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

func (DataAuthSettingsV2LoginAttributes) AllowedExternalRedirectUrls

func (l DataAuthSettingsV2LoginAttributes) AllowedExternalRedirectUrls() terra.ListValue[terra.StringValue]

func (DataAuthSettingsV2LoginAttributes) CookieExpirationConvention

func (l DataAuthSettingsV2LoginAttributes) CookieExpirationConvention() terra.StringValue

func (DataAuthSettingsV2LoginAttributes) CookieExpirationTime

func (l DataAuthSettingsV2LoginAttributes) CookieExpirationTime() terra.StringValue

func (DataAuthSettingsV2LoginAttributes) InternalRef

func (DataAuthSettingsV2LoginAttributes) InternalTokens

func (DataAuthSettingsV2LoginAttributes) InternalWithRef

func (DataAuthSettingsV2LoginAttributes) LogoutEndpoint

func (DataAuthSettingsV2LoginAttributes) NonceExpirationTime

func (l DataAuthSettingsV2LoginAttributes) NonceExpirationTime() terra.StringValue

func (DataAuthSettingsV2LoginAttributes) PreserveUrlFragmentsForLogins

func (l DataAuthSettingsV2LoginAttributes) PreserveUrlFragmentsForLogins() terra.BoolValue

func (DataAuthSettingsV2LoginAttributes) TokenRefreshExtensionTime

func (l DataAuthSettingsV2LoginAttributes) TokenRefreshExtensionTime() terra.NumberValue

func (DataAuthSettingsV2LoginAttributes) TokenStoreEnabled

func (l DataAuthSettingsV2LoginAttributes) TokenStoreEnabled() terra.BoolValue

func (DataAuthSettingsV2LoginAttributes) TokenStorePath

func (DataAuthSettingsV2LoginAttributes) TokenStoreSasSettingName

func (l DataAuthSettingsV2LoginAttributes) TokenStoreSasSettingName() terra.StringValue

func (DataAuthSettingsV2LoginAttributes) ValidateNonce

type DataAuthSettingsV2LoginState

type DataAuthSettingsV2LoginState struct {
	AllowedExternalRedirectUrls   []string `json:"allowed_external_redirect_urls"`
	CookieExpirationConvention    string   `json:"cookie_expiration_convention"`
	CookieExpirationTime          string   `json:"cookie_expiration_time"`
	LogoutEndpoint                string   `json:"logout_endpoint"`
	NonceExpirationTime           string   `json:"nonce_expiration_time"`
	PreserveUrlFragmentsForLogins bool     `json:"preserve_url_fragments_for_logins"`
	TokenRefreshExtensionTime     float64  `json:"token_refresh_extension_time"`
	TokenStoreEnabled             bool     `json:"token_store_enabled"`
	TokenStorePath                string   `json:"token_store_path"`
	TokenStoreSasSettingName      string   `json:"token_store_sas_setting_name"`
	ValidateNonce                 bool     `json:"validate_nonce"`
}

type DataAuthSettingsV2MicrosoftV2Attributes

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

func (DataAuthSettingsV2MicrosoftV2Attributes) AllowedAudiences

func (DataAuthSettingsV2MicrosoftV2Attributes) ClientId

func (DataAuthSettingsV2MicrosoftV2Attributes) ClientSecretSettingName

func (mv DataAuthSettingsV2MicrosoftV2Attributes) ClientSecretSettingName() terra.StringValue

func (DataAuthSettingsV2MicrosoftV2Attributes) InternalRef

func (DataAuthSettingsV2MicrosoftV2Attributes) InternalTokens

func (DataAuthSettingsV2MicrosoftV2Attributes) InternalWithRef

func (DataAuthSettingsV2MicrosoftV2Attributes) LoginScopes

type DataAuthSettingsV2MicrosoftV2State

type DataAuthSettingsV2MicrosoftV2State struct {
	AllowedAudiences        []string `json:"allowed_audiences"`
	ClientId                string   `json:"client_id"`
	ClientSecretSettingName string   `json:"client_secret_setting_name"`
	LoginScopes             []string `json:"login_scopes"`
}

type DataAuthSettingsV2State

type DataAuthSettingsV2State struct {
	AuthEnabled                        bool                                         `json:"auth_enabled"`
	ConfigFilePath                     string                                       `json:"config_file_path"`
	DefaultProvider                    string                                       `json:"default_provider"`
	ExcludedPaths                      []string                                     `json:"excluded_paths"`
	ForwardProxyConvention             string                                       `json:"forward_proxy_convention"`
	ForwardProxyCustomHostHeaderName   string                                       `json:"forward_proxy_custom_host_header_name"`
	ForwardProxyCustomSchemeHeaderName string                                       `json:"forward_proxy_custom_scheme_header_name"`
	HttpRouteApiPrefix                 string                                       `json:"http_route_api_prefix"`
	RequireAuthentication              bool                                         `json:"require_authentication"`
	RequireHttps                       bool                                         `json:"require_https"`
	RuntimeVersion                     string                                       `json:"runtime_version"`
	UnauthenticatedAction              string                                       `json:"unauthenticated_action"`
	ActiveDirectoryV2                  []DataAuthSettingsV2ActiveDirectoryV2State   `json:"active_directory_v2"`
	AppleV2                            []DataAuthSettingsV2AppleV2State             `json:"apple_v2"`
	AzureStaticWebAppV2                []DataAuthSettingsV2AzureStaticWebAppV2State `json:"azure_static_web_app_v2"`
	CustomOidcV2                       []DataAuthSettingsV2CustomOidcV2State        `json:"custom_oidc_v2"`
	FacebookV2                         []DataAuthSettingsV2FacebookV2State          `json:"facebook_v2"`
	GithubV2                           []DataAuthSettingsV2GithubV2State            `json:"github_v2"`
	GoogleV2                           []DataAuthSettingsV2GoogleV2State            `json:"google_v2"`
	Login                              []DataAuthSettingsV2LoginState               `json:"login"`
	MicrosoftV2                        []DataAuthSettingsV2MicrosoftV2State         `json:"microsoft_v2"`
	TwitterV2                          []DataAuthSettingsV2TwitterV2State           `json:"twitter_v2"`
}

type DataAuthSettingsV2TwitterV2Attributes

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

func (DataAuthSettingsV2TwitterV2Attributes) ConsumerKey

func (DataAuthSettingsV2TwitterV2Attributes) ConsumerSecretSettingName

func (tv DataAuthSettingsV2TwitterV2Attributes) ConsumerSecretSettingName() terra.StringValue

func (DataAuthSettingsV2TwitterV2Attributes) InternalRef

func (DataAuthSettingsV2TwitterV2Attributes) InternalTokens

func (DataAuthSettingsV2TwitterV2Attributes) InternalWithRef

type DataAuthSettingsV2TwitterV2State

type DataAuthSettingsV2TwitterV2State struct {
	ConsumerKey               string `json:"consumer_key"`
	ConsumerSecretSettingName string `json:"consumer_secret_setting_name"`
}

type DataBackupAttributes

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

func (DataBackupAttributes) Enabled

func (b DataBackupAttributes) Enabled() terra.BoolValue

func (DataBackupAttributes) InternalRef

func (b DataBackupAttributes) InternalRef() (terra.Reference, error)

func (DataBackupAttributes) InternalTokens

func (b DataBackupAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataBackupAttributes) InternalWithRef

func (DataBackupAttributes) Name

func (DataBackupAttributes) Schedule

func (DataBackupAttributes) StorageAccountUrl

func (b DataBackupAttributes) StorageAccountUrl() terra.StringValue

type DataBackupScheduleAttributes

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

func (DataBackupScheduleAttributes) FrequencyInterval

func (s DataBackupScheduleAttributes) FrequencyInterval() terra.NumberValue

func (DataBackupScheduleAttributes) FrequencyUnit

func (DataBackupScheduleAttributes) InternalRef

func (DataBackupScheduleAttributes) InternalTokens

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

func (DataBackupScheduleAttributes) InternalWithRef

func (DataBackupScheduleAttributes) KeepAtLeastOneBackup

func (s DataBackupScheduleAttributes) KeepAtLeastOneBackup() terra.BoolValue

func (DataBackupScheduleAttributes) LastExecutionTime

func (s DataBackupScheduleAttributes) LastExecutionTime() terra.StringValue

func (DataBackupScheduleAttributes) RetentionPeriodDays

func (s DataBackupScheduleAttributes) RetentionPeriodDays() terra.NumberValue

func (DataBackupScheduleAttributes) StartTime

type DataBackupScheduleState

type DataBackupScheduleState struct {
	FrequencyInterval    float64 `json:"frequency_interval"`
	FrequencyUnit        string  `json:"frequency_unit"`
	KeepAtLeastOneBackup bool    `json:"keep_at_least_one_backup"`
	LastExecutionTime    string  `json:"last_execution_time"`
	RetentionPeriodDays  float64 `json:"retention_period_days"`
	StartTime            string  `json:"start_time"`
}

type DataBackupState

type DataBackupState struct {
	Enabled           bool                      `json:"enabled"`
	Name              string                    `json:"name"`
	StorageAccountUrl string                    `json:"storage_account_url"`
	Schedule          []DataBackupScheduleState `json:"schedule"`
}

type DataConnectionStringAttributes

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

func (DataConnectionStringAttributes) InternalRef

func (DataConnectionStringAttributes) InternalTokens

func (cs DataConnectionStringAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataConnectionStringAttributes) InternalWithRef

func (DataConnectionStringAttributes) Name

func (DataConnectionStringAttributes) Type

func (DataConnectionStringAttributes) Value

type DataConnectionStringState

type DataConnectionStringState struct {
	Name  string `json:"name"`
	Type  string `json:"type"`
	Value string `json:"value"`
}

type DataIdentityAttributes

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

func (DataIdentityAttributes) IdentityIds

func (DataIdentityAttributes) InternalRef

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

func (DataIdentityAttributes) InternalTokens

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

func (DataIdentityAttributes) InternalWithRef

func (DataIdentityAttributes) PrincipalId

func (i DataIdentityAttributes) PrincipalId() terra.StringValue

func (DataIdentityAttributes) TenantId

func (DataIdentityAttributes) Type

type DataIdentityState

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

type DataSiteConfigAppServiceLogsAttributes

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

func (DataSiteConfigAppServiceLogsAttributes) DiskQuotaMb

func (DataSiteConfigAppServiceLogsAttributes) InternalRef

func (DataSiteConfigAppServiceLogsAttributes) InternalTokens

func (DataSiteConfigAppServiceLogsAttributes) InternalWithRef

func (DataSiteConfigAppServiceLogsAttributes) RetentionPeriodDays

func (asl DataSiteConfigAppServiceLogsAttributes) RetentionPeriodDays() terra.NumberValue

type DataSiteConfigAppServiceLogsState

type DataSiteConfigAppServiceLogsState struct {
	DiskQuotaMb         float64 `json:"disk_quota_mb"`
	RetentionPeriodDays float64 `json:"retention_period_days"`
}

type DataSiteConfigApplicationStackAttributes

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

func (DataSiteConfigApplicationStackAttributes) DotnetVersion

func (DataSiteConfigApplicationStackAttributes) InternalRef

func (DataSiteConfigApplicationStackAttributes) InternalTokens

func (DataSiteConfigApplicationStackAttributes) InternalWithRef

func (DataSiteConfigApplicationStackAttributes) JavaVersion

func (DataSiteConfigApplicationStackAttributes) NodeVersion

func (DataSiteConfigApplicationStackAttributes) PowershellCoreVersion

func (as DataSiteConfigApplicationStackAttributes) PowershellCoreVersion() terra.StringValue

func (DataSiteConfigApplicationStackAttributes) UseCustomRuntime

func (DataSiteConfigApplicationStackAttributes) UseDotnetIsolatedRuntime

func (as DataSiteConfigApplicationStackAttributes) UseDotnetIsolatedRuntime() terra.BoolValue

type DataSiteConfigApplicationStackState

type DataSiteConfigApplicationStackState struct {
	DotnetVersion            string `json:"dotnet_version"`
	JavaVersion              string `json:"java_version"`
	NodeVersion              string `json:"node_version"`
	PowershellCoreVersion    string `json:"powershell_core_version"`
	UseCustomRuntime         bool   `json:"use_custom_runtime"`
	UseDotnetIsolatedRuntime bool   `json:"use_dotnet_isolated_runtime"`
}

type DataSiteConfigAttributes

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

func (DataSiteConfigAttributes) AlwaysOn

func (DataSiteConfigAttributes) ApiDefinitionUrl

func (sc DataSiteConfigAttributes) ApiDefinitionUrl() terra.StringValue

func (DataSiteConfigAttributes) ApiManagementApiId

func (sc DataSiteConfigAttributes) ApiManagementApiId() terra.StringValue

func (DataSiteConfigAttributes) AppCommandLine

func (sc DataSiteConfigAttributes) AppCommandLine() terra.StringValue

func (DataSiteConfigAttributes) AppScaleLimit

func (sc DataSiteConfigAttributes) AppScaleLimit() terra.NumberValue

func (DataSiteConfigAttributes) AppServiceLogs

func (DataSiteConfigAttributes) ApplicationInsightsConnectionString

func (sc DataSiteConfigAttributes) ApplicationInsightsConnectionString() terra.StringValue

func (DataSiteConfigAttributes) ApplicationInsightsKey

func (sc DataSiteConfigAttributes) ApplicationInsightsKey() terra.StringValue

func (DataSiteConfigAttributes) ApplicationStack

func (DataSiteConfigAttributes) Cors

func (DataSiteConfigAttributes) DefaultDocuments

func (sc DataSiteConfigAttributes) DefaultDocuments() terra.ListValue[terra.StringValue]

func (DataSiteConfigAttributes) DetailedErrorLoggingEnabled

func (sc DataSiteConfigAttributes) DetailedErrorLoggingEnabled() terra.BoolValue

func (DataSiteConfigAttributes) ElasticInstanceMinimum

func (sc DataSiteConfigAttributes) ElasticInstanceMinimum() terra.NumberValue

func (DataSiteConfigAttributes) FtpsState

func (DataSiteConfigAttributes) HealthCheckEvictionTimeInMin

func (sc DataSiteConfigAttributes) HealthCheckEvictionTimeInMin() terra.NumberValue

func (DataSiteConfigAttributes) HealthCheckPath

func (sc DataSiteConfigAttributes) HealthCheckPath() terra.StringValue

func (DataSiteConfigAttributes) Http2Enabled

func (sc DataSiteConfigAttributes) Http2Enabled() terra.BoolValue

func (DataSiteConfigAttributes) InternalRef

func (sc DataSiteConfigAttributes) InternalRef() (terra.Reference, error)

func (DataSiteConfigAttributes) InternalTokens

func (sc DataSiteConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataSiteConfigAttributes) InternalWithRef

func (DataSiteConfigAttributes) IpRestriction

func (DataSiteConfigAttributes) IpRestrictionDefaultAction

func (sc DataSiteConfigAttributes) IpRestrictionDefaultAction() terra.StringValue

func (DataSiteConfigAttributes) LoadBalancingMode

func (sc DataSiteConfigAttributes) LoadBalancingMode() terra.StringValue

func (DataSiteConfigAttributes) ManagedPipelineMode

func (sc DataSiteConfigAttributes) ManagedPipelineMode() terra.StringValue

func (DataSiteConfigAttributes) MinimumTlsVersion

func (sc DataSiteConfigAttributes) MinimumTlsVersion() terra.StringValue

func (DataSiteConfigAttributes) PreWarmedInstanceCount

func (sc DataSiteConfigAttributes) PreWarmedInstanceCount() terra.NumberValue

func (DataSiteConfigAttributes) RemoteDebuggingEnabled

func (sc DataSiteConfigAttributes) RemoteDebuggingEnabled() terra.BoolValue

func (DataSiteConfigAttributes) RemoteDebuggingVersion

func (sc DataSiteConfigAttributes) RemoteDebuggingVersion() terra.StringValue

func (DataSiteConfigAttributes) RuntimeScaleMonitoringEnabled

func (sc DataSiteConfigAttributes) RuntimeScaleMonitoringEnabled() terra.BoolValue

func (DataSiteConfigAttributes) ScmIpRestriction

func (DataSiteConfigAttributes) ScmIpRestrictionDefaultAction

func (sc DataSiteConfigAttributes) ScmIpRestrictionDefaultAction() terra.StringValue

func (DataSiteConfigAttributes) ScmMinimumTlsVersion

func (sc DataSiteConfigAttributes) ScmMinimumTlsVersion() terra.StringValue

func (DataSiteConfigAttributes) ScmType

func (DataSiteConfigAttributes) ScmUseMainIpRestriction

func (sc DataSiteConfigAttributes) ScmUseMainIpRestriction() terra.BoolValue

func (DataSiteConfigAttributes) Use32BitWorker

func (sc DataSiteConfigAttributes) Use32BitWorker() terra.BoolValue

func (DataSiteConfigAttributes) VnetRouteAllEnabled

func (sc DataSiteConfigAttributes) VnetRouteAllEnabled() terra.BoolValue

func (DataSiteConfigAttributes) WebsocketsEnabled

func (sc DataSiteConfigAttributes) WebsocketsEnabled() terra.BoolValue

func (DataSiteConfigAttributes) WindowsFxVersion

func (sc DataSiteConfigAttributes) WindowsFxVersion() terra.StringValue

func (DataSiteConfigAttributes) WorkerCount

func (sc DataSiteConfigAttributes) WorkerCount() terra.NumberValue

type DataSiteConfigCorsAttributes

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

func (DataSiteConfigCorsAttributes) AllowedOrigins

func (DataSiteConfigCorsAttributes) InternalRef

func (DataSiteConfigCorsAttributes) InternalTokens

func (c DataSiteConfigCorsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataSiteConfigCorsAttributes) InternalWithRef

func (DataSiteConfigCorsAttributes) SupportCredentials

func (c DataSiteConfigCorsAttributes) SupportCredentials() terra.BoolValue

type DataSiteConfigCorsState

type DataSiteConfigCorsState struct {
	AllowedOrigins     []string `json:"allowed_origins"`
	SupportCredentials bool     `json:"support_credentials"`
}

type DataSiteConfigIpRestrictionAttributes

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

func (DataSiteConfigIpRestrictionAttributes) Action

func (DataSiteConfigIpRestrictionAttributes) Description

func (DataSiteConfigIpRestrictionAttributes) Headers

func (DataSiteConfigIpRestrictionAttributes) InternalRef

func (DataSiteConfigIpRestrictionAttributes) InternalTokens

func (DataSiteConfigIpRestrictionAttributes) InternalWithRef

func (DataSiteConfigIpRestrictionAttributes) IpAddress

func (DataSiteConfigIpRestrictionAttributes) Name

func (DataSiteConfigIpRestrictionAttributes) Priority

func (DataSiteConfigIpRestrictionAttributes) ServiceTag

func (DataSiteConfigIpRestrictionAttributes) VirtualNetworkSubnetId

func (ir DataSiteConfigIpRestrictionAttributes) VirtualNetworkSubnetId() terra.StringValue

type DataSiteConfigIpRestrictionHeadersAttributes

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

func (DataSiteConfigIpRestrictionHeadersAttributes) InternalRef

func (DataSiteConfigIpRestrictionHeadersAttributes) InternalTokens

func (DataSiteConfigIpRestrictionHeadersAttributes) InternalWithRef

func (DataSiteConfigIpRestrictionHeadersAttributes) XAzureFdid

func (DataSiteConfigIpRestrictionHeadersAttributes) XFdHealthProbe

func (DataSiteConfigIpRestrictionHeadersAttributes) XForwardedFor

func (DataSiteConfigIpRestrictionHeadersAttributes) XForwardedHost

type DataSiteConfigIpRestrictionHeadersState

type DataSiteConfigIpRestrictionHeadersState struct {
	XAzureFdid     []string `json:"x_azure_fdid"`
	XFdHealthProbe []string `json:"x_fd_health_probe"`
	XForwardedFor  []string `json:"x_forwarded_for"`
	XForwardedHost []string `json:"x_forwarded_host"`
}

type DataSiteConfigIpRestrictionState

type DataSiteConfigIpRestrictionState struct {
	Action                 string                                    `json:"action"`
	Description            string                                    `json:"description"`
	IpAddress              string                                    `json:"ip_address"`
	Name                   string                                    `json:"name"`
	Priority               float64                                   `json:"priority"`
	ServiceTag             string                                    `json:"service_tag"`
	VirtualNetworkSubnetId string                                    `json:"virtual_network_subnet_id"`
	Headers                []DataSiteConfigIpRestrictionHeadersState `json:"headers"`
}

type DataSiteConfigScmIpRestrictionAttributes

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

func (DataSiteConfigScmIpRestrictionAttributes) Action

func (DataSiteConfigScmIpRestrictionAttributes) Description

func (DataSiteConfigScmIpRestrictionAttributes) Headers

func (DataSiteConfigScmIpRestrictionAttributes) InternalRef

func (DataSiteConfigScmIpRestrictionAttributes) InternalTokens

func (DataSiteConfigScmIpRestrictionAttributes) InternalWithRef

func (DataSiteConfigScmIpRestrictionAttributes) IpAddress

func (DataSiteConfigScmIpRestrictionAttributes) Name

func (DataSiteConfigScmIpRestrictionAttributes) Priority

func (DataSiteConfigScmIpRestrictionAttributes) ServiceTag

func (DataSiteConfigScmIpRestrictionAttributes) VirtualNetworkSubnetId

func (sir DataSiteConfigScmIpRestrictionAttributes) VirtualNetworkSubnetId() terra.StringValue

type DataSiteConfigScmIpRestrictionHeadersAttributes

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

func (DataSiteConfigScmIpRestrictionHeadersAttributes) InternalRef

func (DataSiteConfigScmIpRestrictionHeadersAttributes) InternalTokens

func (DataSiteConfigScmIpRestrictionHeadersAttributes) InternalWithRef

func (DataSiteConfigScmIpRestrictionHeadersAttributes) XAzureFdid

func (DataSiteConfigScmIpRestrictionHeadersAttributes) XFdHealthProbe

func (DataSiteConfigScmIpRestrictionHeadersAttributes) XForwardedFor

func (DataSiteConfigScmIpRestrictionHeadersAttributes) XForwardedHost

type DataSiteConfigScmIpRestrictionHeadersState

type DataSiteConfigScmIpRestrictionHeadersState struct {
	XAzureFdid     []string `json:"x_azure_fdid"`
	XFdHealthProbe []string `json:"x_fd_health_probe"`
	XForwardedFor  []string `json:"x_forwarded_for"`
	XForwardedHost []string `json:"x_forwarded_host"`
}

type DataSiteConfigScmIpRestrictionState

type DataSiteConfigScmIpRestrictionState struct {
	Action                 string                                       `json:"action"`
	Description            string                                       `json:"description"`
	IpAddress              string                                       `json:"ip_address"`
	Name                   string                                       `json:"name"`
	Priority               float64                                      `json:"priority"`
	ServiceTag             string                                       `json:"service_tag"`
	VirtualNetworkSubnetId string                                       `json:"virtual_network_subnet_id"`
	Headers                []DataSiteConfigScmIpRestrictionHeadersState `json:"headers"`
}

type DataSiteConfigState

type DataSiteConfigState struct {
	AlwaysOn                            bool                                  `json:"always_on"`
	ApiDefinitionUrl                    string                                `json:"api_definition_url"`
	ApiManagementApiId                  string                                `json:"api_management_api_id"`
	AppCommandLine                      string                                `json:"app_command_line"`
	AppScaleLimit                       float64                               `json:"app_scale_limit"`
	ApplicationInsightsConnectionString string                                `json:"application_insights_connection_string"`
	ApplicationInsightsKey              string                                `json:"application_insights_key"`
	DefaultDocuments                    []string                              `json:"default_documents"`
	DetailedErrorLoggingEnabled         bool                                  `json:"detailed_error_logging_enabled"`
	ElasticInstanceMinimum              float64                               `json:"elastic_instance_minimum"`
	FtpsState                           string                                `json:"ftps_state"`
	HealthCheckEvictionTimeInMin        float64                               `json:"health_check_eviction_time_in_min"`
	HealthCheckPath                     string                                `json:"health_check_path"`
	Http2Enabled                        bool                                  `json:"http2_enabled"`
	IpRestrictionDefaultAction          string                                `json:"ip_restriction_default_action"`
	LoadBalancingMode                   string                                `json:"load_balancing_mode"`
	ManagedPipelineMode                 string                                `json:"managed_pipeline_mode"`
	MinimumTlsVersion                   string                                `json:"minimum_tls_version"`
	PreWarmedInstanceCount              float64                               `json:"pre_warmed_instance_count"`
	RemoteDebuggingEnabled              bool                                  `json:"remote_debugging_enabled"`
	RemoteDebuggingVersion              string                                `json:"remote_debugging_version"`
	RuntimeScaleMonitoringEnabled       bool                                  `json:"runtime_scale_monitoring_enabled"`
	ScmIpRestrictionDefaultAction       string                                `json:"scm_ip_restriction_default_action"`
	ScmMinimumTlsVersion                string                                `json:"scm_minimum_tls_version"`
	ScmType                             string                                `json:"scm_type"`
	ScmUseMainIpRestriction             bool                                  `json:"scm_use_main_ip_restriction"`
	Use32BitWorker                      bool                                  `json:"use_32_bit_worker"`
	VnetRouteAllEnabled                 bool                                  `json:"vnet_route_all_enabled"`
	WebsocketsEnabled                   bool                                  `json:"websockets_enabled"`
	WindowsFxVersion                    string                                `json:"windows_fx_version"`
	WorkerCount                         float64                               `json:"worker_count"`
	AppServiceLogs                      []DataSiteConfigAppServiceLogsState   `json:"app_service_logs"`
	ApplicationStack                    []DataSiteConfigApplicationStackState `json:"application_stack"`
	Cors                                []DataSiteConfigCorsState             `json:"cors"`
	IpRestriction                       []DataSiteConfigIpRestrictionState    `json:"ip_restriction"`
	ScmIpRestriction                    []DataSiteConfigScmIpRestrictionState `json:"scm_ip_restriction"`
}

type DataSiteCredentialAttributes

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

func (DataSiteCredentialAttributes) InternalRef

func (sc DataSiteCredentialAttributes) InternalRef() (terra.Reference, error)

func (DataSiteCredentialAttributes) InternalTokens

func (sc DataSiteCredentialAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataSiteCredentialAttributes) InternalWithRef

func (DataSiteCredentialAttributes) Name

func (DataSiteCredentialAttributes) Password

type DataSiteCredentialState

type DataSiteCredentialState struct {
	Name     string `json:"name"`
	Password string `json:"password"`
}

type DataSource

type DataSource struct {
	Name string
	Args DataArgs
}

DataSource represents the Terraform data resource azurerm_windows_function_app.

func Data

func Data(name string, args DataArgs) *DataSource

Data creates a new instance of DataSource.

func (*DataSource) Attributes

func (awfa *DataSource) Attributes() dataAzurermWindowsFunctionAppAttributes

Attributes returns the attributes for DataSource.

func (*DataSource) Configuration

func (awfa *DataSource) Configuration() interface{}

Configuration returns the configuration (args) for DataSource.

func (*DataSource) DataSource

func (awfa *DataSource) DataSource() string

DataSource returns the Terraform object type for DataSource.

func (*DataSource) LocalName

func (awfa *DataSource) LocalName() string

LocalName returns the local name for DataSource.

type DataStickySettingsAttributes

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

func (DataStickySettingsAttributes) AppSettingNames

func (DataStickySettingsAttributes) ConnectionStringNames

func (ss DataStickySettingsAttributes) ConnectionStringNames() terra.ListValue[terra.StringValue]

func (DataStickySettingsAttributes) InternalRef

func (ss DataStickySettingsAttributes) InternalRef() (terra.Reference, error)

func (DataStickySettingsAttributes) InternalTokens

func (ss DataStickySettingsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (DataStickySettingsAttributes) InternalWithRef

type DataStickySettingsState

type DataStickySettingsState struct {
	AppSettingNames       []string `json:"app_setting_names"`
	ConnectionStringNames []string `json:"connection_string_names"`
}

type DataTimeouts

type DataTimeouts struct {
	// Read: string, optional
	Read terra.StringValue `hcl:"read,attr"`
}

type DataTimeoutsAttributes

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

func (DataTimeoutsAttributes) InternalRef

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

func (DataTimeoutsAttributes) InternalTokens

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

func (DataTimeoutsAttributes) InternalWithRef

func (DataTimeoutsAttributes) Read

type DataTimeoutsState

type DataTimeoutsState struct {
	Read string `json:"read"`
}

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

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (awfa *Resource) Attributes() azurermWindowsFunctionAppAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

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

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

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

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

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

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

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

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

func (*Resource) LifecycleManagement

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

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (awfa *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (awfa *Resource) State() (*azurermWindowsFunctionAppState, bool)

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

func (*Resource) StateMust

func (awfa *Resource) StateMust() *azurermWindowsFunctionAppState

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

func (*Resource) Type

func (awfa *Resource) Type() string

Type returns the Terraform object type for Resource.

type SiteConfig

type SiteConfig struct {
	// AlwaysOn: bool, optional
	AlwaysOn terra.BoolValue `hcl:"always_on,attr"`
	// ApiDefinitionUrl: string, optional
	ApiDefinitionUrl terra.StringValue `hcl:"api_definition_url,attr"`
	// ApiManagementApiId: string, optional
	ApiManagementApiId terra.StringValue `hcl:"api_management_api_id,attr"`
	// AppCommandLine: string, optional
	AppCommandLine terra.StringValue `hcl:"app_command_line,attr"`
	// AppScaleLimit: number, optional
	AppScaleLimit terra.NumberValue `hcl:"app_scale_limit,attr"`
	// ApplicationInsightsConnectionString: string, optional
	ApplicationInsightsConnectionString terra.StringValue `hcl:"application_insights_connection_string,attr"`
	// ApplicationInsightsKey: string, optional
	ApplicationInsightsKey terra.StringValue `hcl:"application_insights_key,attr"`
	// DefaultDocuments: list of string, optional
	DefaultDocuments terra.ListValue[terra.StringValue] `hcl:"default_documents,attr"`
	// ElasticInstanceMinimum: number, optional
	ElasticInstanceMinimum terra.NumberValue `hcl:"elastic_instance_minimum,attr"`
	// FtpsState: string, optional
	FtpsState terra.StringValue `hcl:"ftps_state,attr"`
	// HealthCheckEvictionTimeInMin: number, optional
	HealthCheckEvictionTimeInMin terra.NumberValue `hcl:"health_check_eviction_time_in_min,attr"`
	// HealthCheckPath: string, optional
	HealthCheckPath terra.StringValue `hcl:"health_check_path,attr"`
	// Http2Enabled: bool, optional
	Http2Enabled terra.BoolValue `hcl:"http2_enabled,attr"`
	// IpRestrictionDefaultAction: string, optional
	IpRestrictionDefaultAction terra.StringValue `hcl:"ip_restriction_default_action,attr"`
	// LoadBalancingMode: string, optional
	LoadBalancingMode terra.StringValue `hcl:"load_balancing_mode,attr"`
	// ManagedPipelineMode: string, optional
	ManagedPipelineMode terra.StringValue `hcl:"managed_pipeline_mode,attr"`
	// MinimumTlsVersion: string, optional
	MinimumTlsVersion terra.StringValue `hcl:"minimum_tls_version,attr"`
	// PreWarmedInstanceCount: number, optional
	PreWarmedInstanceCount terra.NumberValue `hcl:"pre_warmed_instance_count,attr"`
	// RemoteDebuggingEnabled: bool, optional
	RemoteDebuggingEnabled terra.BoolValue `hcl:"remote_debugging_enabled,attr"`
	// RemoteDebuggingVersion: string, optional
	RemoteDebuggingVersion terra.StringValue `hcl:"remote_debugging_version,attr"`
	// RuntimeScaleMonitoringEnabled: bool, optional
	RuntimeScaleMonitoringEnabled terra.BoolValue `hcl:"runtime_scale_monitoring_enabled,attr"`
	// ScmIpRestrictionDefaultAction: string, optional
	ScmIpRestrictionDefaultAction terra.StringValue `hcl:"scm_ip_restriction_default_action,attr"`
	// ScmMinimumTlsVersion: string, optional
	ScmMinimumTlsVersion terra.StringValue `hcl:"scm_minimum_tls_version,attr"`
	// ScmUseMainIpRestriction: bool, optional
	ScmUseMainIpRestriction terra.BoolValue `hcl:"scm_use_main_ip_restriction,attr"`
	// Use32BitWorker: bool, optional
	Use32BitWorker terra.BoolValue `hcl:"use_32_bit_worker,attr"`
	// VnetRouteAllEnabled: bool, optional
	VnetRouteAllEnabled terra.BoolValue `hcl:"vnet_route_all_enabled,attr"`
	// WebsocketsEnabled: bool, optional
	WebsocketsEnabled terra.BoolValue `hcl:"websockets_enabled,attr"`
	// WorkerCount: number, optional
	WorkerCount terra.NumberValue `hcl:"worker_count,attr"`
	// SiteConfigAppServiceLogs: optional
	AppServiceLogs *SiteConfigAppServiceLogs `hcl:"app_service_logs,block"`
	// SiteConfigApplicationStack: optional
	ApplicationStack *SiteConfigApplicationStack `hcl:"application_stack,block"`
	// SiteConfigCors: optional
	Cors *SiteConfigCors `hcl:"cors,block"`
	// SiteConfigIpRestriction: min=0
	IpRestriction []SiteConfigIpRestriction `hcl:"ip_restriction,block" validate:"min=0"`
	// SiteConfigScmIpRestriction: min=0
	ScmIpRestriction []SiteConfigScmIpRestriction `hcl:"scm_ip_restriction,block" validate:"min=0"`
}

type SiteConfigAppServiceLogs

type SiteConfigAppServiceLogs struct {
	// DiskQuotaMb: number, optional
	DiskQuotaMb terra.NumberValue `hcl:"disk_quota_mb,attr"`
	// RetentionPeriodDays: number, optional
	RetentionPeriodDays terra.NumberValue `hcl:"retention_period_days,attr"`
}

type SiteConfigAppServiceLogsAttributes

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

func (SiteConfigAppServiceLogsAttributes) DiskQuotaMb

func (SiteConfigAppServiceLogsAttributes) InternalRef

func (SiteConfigAppServiceLogsAttributes) InternalTokens

func (asl SiteConfigAppServiceLogsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SiteConfigAppServiceLogsAttributes) InternalWithRef

func (SiteConfigAppServiceLogsAttributes) RetentionPeriodDays

func (asl SiteConfigAppServiceLogsAttributes) RetentionPeriodDays() terra.NumberValue

type SiteConfigAppServiceLogsState

type SiteConfigAppServiceLogsState struct {
	DiskQuotaMb         float64 `json:"disk_quota_mb"`
	RetentionPeriodDays float64 `json:"retention_period_days"`
}

type SiteConfigApplicationStack

type SiteConfigApplicationStack struct {
	// DotnetVersion: string, optional
	DotnetVersion terra.StringValue `hcl:"dotnet_version,attr"`
	// JavaVersion: string, optional
	JavaVersion terra.StringValue `hcl:"java_version,attr"`
	// NodeVersion: string, optional
	NodeVersion terra.StringValue `hcl:"node_version,attr"`
	// PowershellCoreVersion: string, optional
	PowershellCoreVersion terra.StringValue `hcl:"powershell_core_version,attr"`
	// UseCustomRuntime: bool, optional
	UseCustomRuntime terra.BoolValue `hcl:"use_custom_runtime,attr"`
	// UseDotnetIsolatedRuntime: bool, optional
	UseDotnetIsolatedRuntime terra.BoolValue `hcl:"use_dotnet_isolated_runtime,attr"`
}

type SiteConfigApplicationStackAttributes

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

func (SiteConfigApplicationStackAttributes) DotnetVersion

func (SiteConfigApplicationStackAttributes) InternalRef

func (SiteConfigApplicationStackAttributes) InternalTokens

func (SiteConfigApplicationStackAttributes) InternalWithRef

func (SiteConfigApplicationStackAttributes) JavaVersion

func (SiteConfigApplicationStackAttributes) NodeVersion

func (SiteConfigApplicationStackAttributes) PowershellCoreVersion

func (as SiteConfigApplicationStackAttributes) PowershellCoreVersion() terra.StringValue

func (SiteConfigApplicationStackAttributes) UseCustomRuntime

func (SiteConfigApplicationStackAttributes) UseDotnetIsolatedRuntime

func (as SiteConfigApplicationStackAttributes) UseDotnetIsolatedRuntime() terra.BoolValue

type SiteConfigApplicationStackState

type SiteConfigApplicationStackState struct {
	DotnetVersion            string `json:"dotnet_version"`
	JavaVersion              string `json:"java_version"`
	NodeVersion              string `json:"node_version"`
	PowershellCoreVersion    string `json:"powershell_core_version"`
	UseCustomRuntime         bool   `json:"use_custom_runtime"`
	UseDotnetIsolatedRuntime bool   `json:"use_dotnet_isolated_runtime"`
}

type SiteConfigAttributes

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

func (SiteConfigAttributes) AlwaysOn

func (sc SiteConfigAttributes) AlwaysOn() terra.BoolValue

func (SiteConfigAttributes) ApiDefinitionUrl

func (sc SiteConfigAttributes) ApiDefinitionUrl() terra.StringValue

func (SiteConfigAttributes) ApiManagementApiId

func (sc SiteConfigAttributes) ApiManagementApiId() terra.StringValue

func (SiteConfigAttributes) AppCommandLine

func (sc SiteConfigAttributes) AppCommandLine() terra.StringValue

func (SiteConfigAttributes) AppScaleLimit

func (sc SiteConfigAttributes) AppScaleLimit() terra.NumberValue

func (SiteConfigAttributes) AppServiceLogs

func (SiteConfigAttributes) ApplicationInsightsConnectionString

func (sc SiteConfigAttributes) ApplicationInsightsConnectionString() terra.StringValue

func (SiteConfigAttributes) ApplicationInsightsKey

func (sc SiteConfigAttributes) ApplicationInsightsKey() terra.StringValue

func (SiteConfigAttributes) ApplicationStack

func (SiteConfigAttributes) Cors

func (SiteConfigAttributes) DefaultDocuments

func (sc SiteConfigAttributes) DefaultDocuments() terra.ListValue[terra.StringValue]

func (SiteConfigAttributes) DetailedErrorLoggingEnabled

func (sc SiteConfigAttributes) DetailedErrorLoggingEnabled() terra.BoolValue

func (SiteConfigAttributes) ElasticInstanceMinimum

func (sc SiteConfigAttributes) ElasticInstanceMinimum() terra.NumberValue

func (SiteConfigAttributes) FtpsState

func (sc SiteConfigAttributes) FtpsState() terra.StringValue

func (SiteConfigAttributes) HealthCheckEvictionTimeInMin

func (sc SiteConfigAttributes) HealthCheckEvictionTimeInMin() terra.NumberValue

func (SiteConfigAttributes) HealthCheckPath

func (sc SiteConfigAttributes) HealthCheckPath() terra.StringValue

func (SiteConfigAttributes) Http2Enabled

func (sc SiteConfigAttributes) Http2Enabled() terra.BoolValue

func (SiteConfigAttributes) InternalRef

func (sc SiteConfigAttributes) InternalRef() (terra.Reference, error)

func (SiteConfigAttributes) InternalTokens

func (sc SiteConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SiteConfigAttributes) InternalWithRef

func (sc SiteConfigAttributes) InternalWithRef(ref terra.Reference) SiteConfigAttributes

func (SiteConfigAttributes) IpRestriction

func (SiteConfigAttributes) IpRestrictionDefaultAction

func (sc SiteConfigAttributes) IpRestrictionDefaultAction() terra.StringValue

func (SiteConfigAttributes) LoadBalancingMode

func (sc SiteConfigAttributes) LoadBalancingMode() terra.StringValue

func (SiteConfigAttributes) ManagedPipelineMode

func (sc SiteConfigAttributes) ManagedPipelineMode() terra.StringValue

func (SiteConfigAttributes) MinimumTlsVersion

func (sc SiteConfigAttributes) MinimumTlsVersion() terra.StringValue

func (SiteConfigAttributes) PreWarmedInstanceCount

func (sc SiteConfigAttributes) PreWarmedInstanceCount() terra.NumberValue

func (SiteConfigAttributes) RemoteDebuggingEnabled

func (sc SiteConfigAttributes) RemoteDebuggingEnabled() terra.BoolValue

func (SiteConfigAttributes) RemoteDebuggingVersion

func (sc SiteConfigAttributes) RemoteDebuggingVersion() terra.StringValue

func (SiteConfigAttributes) RuntimeScaleMonitoringEnabled

func (sc SiteConfigAttributes) RuntimeScaleMonitoringEnabled() terra.BoolValue

func (SiteConfigAttributes) ScmIpRestriction

func (SiteConfigAttributes) ScmIpRestrictionDefaultAction

func (sc SiteConfigAttributes) ScmIpRestrictionDefaultAction() terra.StringValue

func (SiteConfigAttributes) ScmMinimumTlsVersion

func (sc SiteConfigAttributes) ScmMinimumTlsVersion() terra.StringValue

func (SiteConfigAttributes) ScmType

func (sc SiteConfigAttributes) ScmType() terra.StringValue

func (SiteConfigAttributes) ScmUseMainIpRestriction

func (sc SiteConfigAttributes) ScmUseMainIpRestriction() terra.BoolValue

func (SiteConfigAttributes) Use32BitWorker

func (sc SiteConfigAttributes) Use32BitWorker() terra.BoolValue

func (SiteConfigAttributes) VnetRouteAllEnabled

func (sc SiteConfigAttributes) VnetRouteAllEnabled() terra.BoolValue

func (SiteConfigAttributes) WebsocketsEnabled

func (sc SiteConfigAttributes) WebsocketsEnabled() terra.BoolValue

func (SiteConfigAttributes) WindowsFxVersion

func (sc SiteConfigAttributes) WindowsFxVersion() terra.StringValue

func (SiteConfigAttributes) WorkerCount

func (sc SiteConfigAttributes) WorkerCount() terra.NumberValue

type SiteConfigCors

type SiteConfigCors struct {
	// AllowedOrigins: set of string, optional
	AllowedOrigins terra.SetValue[terra.StringValue] `hcl:"allowed_origins,attr"`
	// SupportCredentials: bool, optional
	SupportCredentials terra.BoolValue `hcl:"support_credentials,attr"`
}

type SiteConfigCorsAttributes

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

func (SiteConfigCorsAttributes) AllowedOrigins

func (SiteConfigCorsAttributes) InternalRef

func (c SiteConfigCorsAttributes) InternalRef() (terra.Reference, error)

func (SiteConfigCorsAttributes) InternalTokens

func (c SiteConfigCorsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SiteConfigCorsAttributes) InternalWithRef

func (SiteConfigCorsAttributes) SupportCredentials

func (c SiteConfigCorsAttributes) SupportCredentials() terra.BoolValue

type SiteConfigCorsState

type SiteConfigCorsState struct {
	AllowedOrigins     []string `json:"allowed_origins"`
	SupportCredentials bool     `json:"support_credentials"`
}

type SiteConfigIpRestriction

type SiteConfigIpRestriction struct {
	// Action: string, optional
	Action terra.StringValue `hcl:"action,attr"`
	// Description: string, optional
	Description terra.StringValue `hcl:"description,attr"`
	// IpAddress: string, optional
	IpAddress terra.StringValue `hcl:"ip_address,attr"`
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// Priority: number, optional
	Priority terra.NumberValue `hcl:"priority,attr"`
	// ServiceTag: string, optional
	ServiceTag terra.StringValue `hcl:"service_tag,attr"`
	// VirtualNetworkSubnetId: string, optional
	VirtualNetworkSubnetId terra.StringValue `hcl:"virtual_network_subnet_id,attr"`
	// SiteConfigIpRestrictionHeaders: min=0
	Headers []SiteConfigIpRestrictionHeaders `hcl:"headers,block" validate:"min=0"`
}

type SiteConfigIpRestrictionAttributes

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

func (SiteConfigIpRestrictionAttributes) Action

func (SiteConfigIpRestrictionAttributes) Description

func (SiteConfigIpRestrictionAttributes) Headers

func (SiteConfigIpRestrictionAttributes) InternalRef

func (SiteConfigIpRestrictionAttributes) InternalTokens

func (ir SiteConfigIpRestrictionAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SiteConfigIpRestrictionAttributes) InternalWithRef

func (SiteConfigIpRestrictionAttributes) IpAddress

func (SiteConfigIpRestrictionAttributes) Name

func (SiteConfigIpRestrictionAttributes) Priority

func (SiteConfigIpRestrictionAttributes) ServiceTag

func (SiteConfigIpRestrictionAttributes) VirtualNetworkSubnetId

func (ir SiteConfigIpRestrictionAttributes) VirtualNetworkSubnetId() terra.StringValue

type SiteConfigIpRestrictionHeaders

type SiteConfigIpRestrictionHeaders struct {
	// XAzureFdid: list of string, optional
	XAzureFdid terra.ListValue[terra.StringValue] `hcl:"x_azure_fdid,attr"`
	// XFdHealthProbe: list of string, optional
	XFdHealthProbe terra.ListValue[terra.StringValue] `hcl:"x_fd_health_probe,attr"`
	// XForwardedFor: list of string, optional
	XForwardedFor terra.ListValue[terra.StringValue] `hcl:"x_forwarded_for,attr"`
	// XForwardedHost: list of string, optional
	XForwardedHost terra.ListValue[terra.StringValue] `hcl:"x_forwarded_host,attr"`
}

type SiteConfigIpRestrictionHeadersAttributes

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

func (SiteConfigIpRestrictionHeadersAttributes) InternalRef

func (SiteConfigIpRestrictionHeadersAttributes) InternalTokens

func (SiteConfigIpRestrictionHeadersAttributes) InternalWithRef

func (SiteConfigIpRestrictionHeadersAttributes) XAzureFdid

func (SiteConfigIpRestrictionHeadersAttributes) XFdHealthProbe

func (SiteConfigIpRestrictionHeadersAttributes) XForwardedFor

func (SiteConfigIpRestrictionHeadersAttributes) XForwardedHost

type SiteConfigIpRestrictionHeadersState

type SiteConfigIpRestrictionHeadersState struct {
	XAzureFdid     []string `json:"x_azure_fdid"`
	XFdHealthProbe []string `json:"x_fd_health_probe"`
	XForwardedFor  []string `json:"x_forwarded_for"`
	XForwardedHost []string `json:"x_forwarded_host"`
}

type SiteConfigIpRestrictionState

type SiteConfigIpRestrictionState struct {
	Action                 string                                `json:"action"`
	Description            string                                `json:"description"`
	IpAddress              string                                `json:"ip_address"`
	Name                   string                                `json:"name"`
	Priority               float64                               `json:"priority"`
	ServiceTag             string                                `json:"service_tag"`
	VirtualNetworkSubnetId string                                `json:"virtual_network_subnet_id"`
	Headers                []SiteConfigIpRestrictionHeadersState `json:"headers"`
}

type SiteConfigScmIpRestriction

type SiteConfigScmIpRestriction struct {
	// Action: string, optional
	Action terra.StringValue `hcl:"action,attr"`
	// Description: string, optional
	Description terra.StringValue `hcl:"description,attr"`
	// IpAddress: string, optional
	IpAddress terra.StringValue `hcl:"ip_address,attr"`
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// Priority: number, optional
	Priority terra.NumberValue `hcl:"priority,attr"`
	// ServiceTag: string, optional
	ServiceTag terra.StringValue `hcl:"service_tag,attr"`
	// VirtualNetworkSubnetId: string, optional
	VirtualNetworkSubnetId terra.StringValue `hcl:"virtual_network_subnet_id,attr"`
	// SiteConfigScmIpRestrictionHeaders: min=0
	Headers []SiteConfigScmIpRestrictionHeaders `hcl:"headers,block" validate:"min=0"`
}

type SiteConfigScmIpRestrictionAttributes

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

func (SiteConfigScmIpRestrictionAttributes) Action

func (SiteConfigScmIpRestrictionAttributes) Description

func (SiteConfigScmIpRestrictionAttributes) Headers

func (SiteConfigScmIpRestrictionAttributes) InternalRef

func (SiteConfigScmIpRestrictionAttributes) InternalTokens

func (SiteConfigScmIpRestrictionAttributes) InternalWithRef

func (SiteConfigScmIpRestrictionAttributes) IpAddress

func (SiteConfigScmIpRestrictionAttributes) Name

func (SiteConfigScmIpRestrictionAttributes) Priority

func (SiteConfigScmIpRestrictionAttributes) ServiceTag

func (SiteConfigScmIpRestrictionAttributes) VirtualNetworkSubnetId

func (sir SiteConfigScmIpRestrictionAttributes) VirtualNetworkSubnetId() terra.StringValue

type SiteConfigScmIpRestrictionHeaders

type SiteConfigScmIpRestrictionHeaders struct {
	// XAzureFdid: list of string, optional
	XAzureFdid terra.ListValue[terra.StringValue] `hcl:"x_azure_fdid,attr"`
	// XFdHealthProbe: list of string, optional
	XFdHealthProbe terra.ListValue[terra.StringValue] `hcl:"x_fd_health_probe,attr"`
	// XForwardedFor: list of string, optional
	XForwardedFor terra.ListValue[terra.StringValue] `hcl:"x_forwarded_for,attr"`
	// XForwardedHost: list of string, optional
	XForwardedHost terra.ListValue[terra.StringValue] `hcl:"x_forwarded_host,attr"`
}

type SiteConfigScmIpRestrictionHeadersAttributes

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

func (SiteConfigScmIpRestrictionHeadersAttributes) InternalRef

func (SiteConfigScmIpRestrictionHeadersAttributes) InternalTokens

func (SiteConfigScmIpRestrictionHeadersAttributes) InternalWithRef

func (SiteConfigScmIpRestrictionHeadersAttributes) XAzureFdid

func (SiteConfigScmIpRestrictionHeadersAttributes) XFdHealthProbe

func (SiteConfigScmIpRestrictionHeadersAttributes) XForwardedFor

func (SiteConfigScmIpRestrictionHeadersAttributes) XForwardedHost

type SiteConfigScmIpRestrictionHeadersState

type SiteConfigScmIpRestrictionHeadersState struct {
	XAzureFdid     []string `json:"x_azure_fdid"`
	XFdHealthProbe []string `json:"x_fd_health_probe"`
	XForwardedFor  []string `json:"x_forwarded_for"`
	XForwardedHost []string `json:"x_forwarded_host"`
}

type SiteConfigScmIpRestrictionState

type SiteConfigScmIpRestrictionState struct {
	Action                 string                                   `json:"action"`
	Description            string                                   `json:"description"`
	IpAddress              string                                   `json:"ip_address"`
	Name                   string                                   `json:"name"`
	Priority               float64                                  `json:"priority"`
	ServiceTag             string                                   `json:"service_tag"`
	VirtualNetworkSubnetId string                                   `json:"virtual_network_subnet_id"`
	Headers                []SiteConfigScmIpRestrictionHeadersState `json:"headers"`
}

type SiteConfigState

type SiteConfigState struct {
	AlwaysOn                            bool                              `json:"always_on"`
	ApiDefinitionUrl                    string                            `json:"api_definition_url"`
	ApiManagementApiId                  string                            `json:"api_management_api_id"`
	AppCommandLine                      string                            `json:"app_command_line"`
	AppScaleLimit                       float64                           `json:"app_scale_limit"`
	ApplicationInsightsConnectionString string                            `json:"application_insights_connection_string"`
	ApplicationInsightsKey              string                            `json:"application_insights_key"`
	DefaultDocuments                    []string                          `json:"default_documents"`
	DetailedErrorLoggingEnabled         bool                              `json:"detailed_error_logging_enabled"`
	ElasticInstanceMinimum              float64                           `json:"elastic_instance_minimum"`
	FtpsState                           string                            `json:"ftps_state"`
	HealthCheckEvictionTimeInMin        float64                           `json:"health_check_eviction_time_in_min"`
	HealthCheckPath                     string                            `json:"health_check_path"`
	Http2Enabled                        bool                              `json:"http2_enabled"`
	IpRestrictionDefaultAction          string                            `json:"ip_restriction_default_action"`
	LoadBalancingMode                   string                            `json:"load_balancing_mode"`
	ManagedPipelineMode                 string                            `json:"managed_pipeline_mode"`
	MinimumTlsVersion                   string                            `json:"minimum_tls_version"`
	PreWarmedInstanceCount              float64                           `json:"pre_warmed_instance_count"`
	RemoteDebuggingEnabled              bool                              `json:"remote_debugging_enabled"`
	RemoteDebuggingVersion              string                            `json:"remote_debugging_version"`
	RuntimeScaleMonitoringEnabled       bool                              `json:"runtime_scale_monitoring_enabled"`
	ScmIpRestrictionDefaultAction       string                            `json:"scm_ip_restriction_default_action"`
	ScmMinimumTlsVersion                string                            `json:"scm_minimum_tls_version"`
	ScmType                             string                            `json:"scm_type"`
	ScmUseMainIpRestriction             bool                              `json:"scm_use_main_ip_restriction"`
	Use32BitWorker                      bool                              `json:"use_32_bit_worker"`
	VnetRouteAllEnabled                 bool                              `json:"vnet_route_all_enabled"`
	WebsocketsEnabled                   bool                              `json:"websockets_enabled"`
	WindowsFxVersion                    string                            `json:"windows_fx_version"`
	WorkerCount                         float64                           `json:"worker_count"`
	AppServiceLogs                      []SiteConfigAppServiceLogsState   `json:"app_service_logs"`
	ApplicationStack                    []SiteConfigApplicationStackState `json:"application_stack"`
	Cors                                []SiteConfigCorsState             `json:"cors"`
	IpRestriction                       []SiteConfigIpRestrictionState    `json:"ip_restriction"`
	ScmIpRestriction                    []SiteConfigScmIpRestrictionState `json:"scm_ip_restriction"`
}

type SiteCredentialAttributes

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

func (SiteCredentialAttributes) InternalRef

func (sc SiteCredentialAttributes) InternalRef() (terra.Reference, error)

func (SiteCredentialAttributes) InternalTokens

func (sc SiteCredentialAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SiteCredentialAttributes) InternalWithRef

func (SiteCredentialAttributes) Name

func (SiteCredentialAttributes) Password

type SiteCredentialState

type SiteCredentialState struct {
	Name     string `json:"name"`
	Password string `json:"password"`
}

type StickySettings

type StickySettings struct {
	// AppSettingNames: list of string, optional
	AppSettingNames terra.ListValue[terra.StringValue] `hcl:"app_setting_names,attr"`
	// ConnectionStringNames: list of string, optional
	ConnectionStringNames terra.ListValue[terra.StringValue] `hcl:"connection_string_names,attr"`
}

type StickySettingsAttributes

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

func (StickySettingsAttributes) AppSettingNames

func (StickySettingsAttributes) ConnectionStringNames

func (ss StickySettingsAttributes) ConnectionStringNames() terra.ListValue[terra.StringValue]

func (StickySettingsAttributes) InternalRef

func (ss StickySettingsAttributes) InternalRef() (terra.Reference, error)

func (StickySettingsAttributes) InternalTokens

func (ss StickySettingsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StickySettingsAttributes) InternalWithRef

type StickySettingsState

type StickySettingsState struct {
	AppSettingNames       []string `json:"app_setting_names"`
	ConnectionStringNames []string `json:"connection_string_names"`
}

type StorageAccount

type StorageAccount struct {
	// AccessKey: string, required
	AccessKey terra.StringValue `hcl:"access_key,attr" validate:"required"`
	// AccountName: string, required
	AccountName terra.StringValue `hcl:"account_name,attr" validate:"required"`
	// MountPath: string, optional
	MountPath terra.StringValue `hcl:"mount_path,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// ShareName: string, required
	ShareName terra.StringValue `hcl:"share_name,attr" validate:"required"`
	// Type: string, required
	Type terra.StringValue `hcl:"type,attr" validate:"required"`
}

type StorageAccountAttributes

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

func (StorageAccountAttributes) AccessKey

func (StorageAccountAttributes) AccountName

func (sa StorageAccountAttributes) AccountName() terra.StringValue

func (StorageAccountAttributes) InternalRef

func (sa StorageAccountAttributes) InternalRef() (terra.Reference, error)

func (StorageAccountAttributes) InternalTokens

func (sa StorageAccountAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StorageAccountAttributes) InternalWithRef

func (StorageAccountAttributes) MountPath

func (StorageAccountAttributes) Name

func (StorageAccountAttributes) ShareName

func (StorageAccountAttributes) Type

type StorageAccountState

type StorageAccountState struct {
	AccessKey   string `json:"access_key"`
	AccountName string `json:"account_name"`
	MountPath   string `json:"mount_path"`
	Name        string `json:"name"`
	ShareName   string `json:"share_name"`
	Type        string `json:"type"`
}

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