Titan Core
  • Overview
  • Getting Started
  • Working With Resources
  • Blueprint
  • GitHub Action
  • Resources
    • APIAuthenticationSecurityIntegration
    • APIIntegration
    • AccountParameter
    • AggregationPolicy
    • Alert
    • AuthenticationPolicy
    • AzureStorageIntegration
    • ComputePool
    • Database
    • DatabaseRole
    • DynamicTable
    • EmailNotificationIntegration
    • EventTable
    • ExternalAccessIntegration
    • ExternalStage
    • FailoverGroup
    • FutureGrant
    • GCSStorageIntegration
    • GenericSecret
    • GlueCatalogIntegration
    • Grant
    • GrantOnAll
    • HybridTable
    • ImageRepository
    • InternalStage
    • JSONFileFormat
    • JavascriptUDF
    • MaterializedView
    • NetworkPolicy
    • NetworkRule
    • OAuthSecret
    • ObjectStoreCatalogIntegration
    • PackagesPolicy
    • ParquetFileFormat
    • PasswordPolicy
    • PasswordSecret
    • Pipe
    • PythonStoredProcedure
    • PythonUDF
    • ReplicationGroup
    • ResourceMonitor
    • Role
    • RoleGrant
    • S3StorageIntegration
    • Schema
    • Sequence
    • Service
    • SessionPolicy
    • Share
    • SnowflakePartnerOAuthSecurityIntegration
    • SnowservicesOAuthSecurityIntegration
    • StageStream
    • Table
    • TableStream
    • Tag
    • Task
    • User
    • View
    • ViewStream
    • Warehouse
Powered by GitBook
On this page
  • Examples
  • Python
  • YAML
  • Fields
  1. Resources

ExternalAccessIntegration

PreviousEventTableNextExternalStage

Last updated 10 months ago

External Access Integrations enable code within functions and stored procedures to utilize secrets and establish connections with external networks. This resource configures the rules and secrets that can be accessed by such code.

Examples

Python

external_access_integration = ExternalAccessIntegration(
    name="some_external_access_integration",
    allowed_network_rules=["rule1", "rule2"],
    enabled=True
)

YAML

external_access_integrations:
  - name: some_external_access_integration
    allowed_network_rules:
      - rule1
      - rule2
    enabled: true

Fields

  • name (string, required) - The name of the external access integration.

  • allowed_api_authentication_integrations (list) - API authentication integrations that are allowed.

  • allowed_authentication_secrets (list) - Authentication secrets that are allowed.

  • enabled (bool) - Specifies if the integration is enabled. Defaults to True.

  • comment (string) - An optional comment about the integration.

allowed_network_rules (list, required) - that are allowed for this integration.

owner (string or ) - The owner role of the external access integration. Defaults to "ACCOUNTADMIN".

Snowflake Documentation
NetworkRules
Role