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

AzureStorageIntegration

PreviousAuthenticationPolicyNextComputePool

Last updated 11 months ago

Represents an Azure storage integration in Snowflake, which allows Snowflake to access external cloud storage using Azure credentials.

Examples

Python

azure_storage_integration = AzureStorageIntegration(
    name="some_azure_storage_integration",
    enabled=True,
    azure_tenant_id="some_tenant_id",
    storage_allowed_locations=["azure://somebucket/somepath/"],
    storage_blocked_locations=["azure://someotherbucket/somepath/"],
    comment="This is an Azure storage integration."
)

YAML

azure_storage_integrations:
  - name: some_azure_storage_integration
    enabled: true
    azure_tenant_id: some_tenant_id
    storage_allowed_locations:
      - azure://somebucket/somepath/
    storage_blocked_locations:
      - azure://someotherbucket/somepath/
    comment: This is an Azure storage integration.

Fields

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

  • enabled (bool, required) - Specifies whether the storage integration is enabled.

  • azure_tenant_id (string, required) - The Azure tenant ID associated with the storage integration.

  • storage_allowed_locations (list) - The cloud storage locations that are allowed.

  • storage_blocked_locations (list) - The cloud storage locations that are blocked.

  • comment (string) - A comment about the storage integration.

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

Snowflake Documentation
Role