!> Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to preview_features_enabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.
Note External changes to integration
category,type, orstorage_providerare not currently supported. They will be handled in the following versions of the provider which may still affect this resource.
Resource used to manage Azure storage integration objects. For more information, check storage integration documentation.
Example Usage
Note Instead of using fully_qualified_name, you can reference objects managed outside Terraform by constructing a correct ID, consult identifiers guide.
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
// minimal
const minimal = new snowflake.StorageIntegrationAzure("minimal", {
name: "example_azure_storage_integration",
enabled: true,
storageAllowedLocations: ["azure://myaccount.blob.core.windows.net/mycontainer/path1/"],
azureTenantId: "a123b4c5-1234-123a-a12b-1a23b45678c9",
});
// all fields
const all = new snowflake.StorageIntegrationAzure("all", {
name: "example_azure_storage_integration",
enabled: true,
storageAllowedLocations: [
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location2/",
],
storageBlockedLocations: [
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location2/",
],
usePrivatelinkEndpoint: "true",
comment: "some comment",
azureTenantId: "a123b4c5-1234-123a-a12b-1a23b45678c9",
});
import pulumi
import pulumi_snowflake as snowflake
# minimal
minimal = snowflake.StorageIntegrationAzure("minimal",
name="example_azure_storage_integration",
enabled=True,
storage_allowed_locations=["azure://myaccount.blob.core.windows.net/mycontainer/path1/"],
azure_tenant_id="a123b4c5-1234-123a-a12b-1a23b45678c9")
# all fields
all = snowflake.StorageIntegrationAzure("all",
name="example_azure_storage_integration",
enabled=True,
storage_allowed_locations=[
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location2/",
],
storage_blocked_locations=[
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location2/",
],
use_privatelink_endpoint="true",
comment="some comment",
azure_tenant_id="a123b4c5-1234-123a-a12b-1a23b45678c9")
package main
import (
"github.com/pulumi/pulumi-snowflake/sdk/v2/go/snowflake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// minimal
_, err := snowflake.NewStorageIntegrationAzure(ctx, "minimal", &snowflake.StorageIntegrationAzureArgs{
Name: pulumi.String("example_azure_storage_integration"),
Enabled: pulumi.Bool(true),
StorageAllowedLocations: pulumi.StringArray{
pulumi.String("azure://myaccount.blob.core.windows.net/mycontainer/path1/"),
},
AzureTenantId: pulumi.String("a123b4c5-1234-123a-a12b-1a23b45678c9"),
})
if err != nil {
return err
}
// all fields
_, err = snowflake.NewStorageIntegrationAzure(ctx, "all", &snowflake.StorageIntegrationAzureArgs{
Name: pulumi.String("example_azure_storage_integration"),
Enabled: pulumi.Bool(true),
StorageAllowedLocations: pulumi.StringArray{
pulumi.String("azure://myaccount.blob.core.windows.net/mycontainer/allowed-location/"),
pulumi.String("azure://myaccount.blob.core.windows.net/mycontainer/allowed-location2/"),
},
StorageBlockedLocations: pulumi.StringArray{
pulumi.String("azure://myaccount.blob.core.windows.net/mycontainer/blocked-location/"),
pulumi.String("azure://myaccount.blob.core.windows.net/mycontainer/blocked-location2/"),
},
UsePrivatelinkEndpoint: pulumi.String("true"),
Comment: pulumi.String("some comment"),
AzureTenantId: pulumi.String("a123b4c5-1234-123a-a12b-1a23b45678c9"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
// minimal
var minimal = new Snowflake.StorageIntegrationAzure("minimal", new()
{
Name = "example_azure_storage_integration",
Enabled = true,
StorageAllowedLocations = new[]
{
"azure://myaccount.blob.core.windows.net/mycontainer/path1/",
},
AzureTenantId = "a123b4c5-1234-123a-a12b-1a23b45678c9",
});
// all fields
var all = new Snowflake.StorageIntegrationAzure("all", new()
{
Name = "example_azure_storage_integration",
Enabled = true,
StorageAllowedLocations = new[]
{
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location2/",
},
StorageBlockedLocations = new[]
{
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location2/",
},
UsePrivatelinkEndpoint = "true",
Comment = "some comment",
AzureTenantId = "a123b4c5-1234-123a-a12b-1a23b45678c9",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.StorageIntegrationAzure;
import com.pulumi.snowflake.StorageIntegrationAzureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// minimal
var minimal = new StorageIntegrationAzure("minimal", StorageIntegrationAzureArgs.builder()
.name("example_azure_storage_integration")
.enabled(true)
.storageAllowedLocations("azure://myaccount.blob.core.windows.net/mycontainer/path1/")
.azureTenantId("a123b4c5-1234-123a-a12b-1a23b45678c9")
.build());
// all fields
var all = new StorageIntegrationAzure("all", StorageIntegrationAzureArgs.builder()
.name("example_azure_storage_integration")
.enabled(true)
.storageAllowedLocations(
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/allowed-location2/")
.storageBlockedLocations(
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location/",
"azure://myaccount.blob.core.windows.net/mycontainer/blocked-location2/")
.usePrivatelinkEndpoint("true")
.comment("some comment")
.azureTenantId("a123b4c5-1234-123a-a12b-1a23b45678c9")
.build());
}
}
resources:
# minimal
minimal:
type: snowflake:StorageIntegrationAzure
properties:
name: example_azure_storage_integration
enabled: true
storageAllowedLocations:
- azure://myaccount.blob.core.windows.net/mycontainer/path1/
azureTenantId: a123b4c5-1234-123a-a12b-1a23b45678c9
# all fields
all:
type: snowflake:StorageIntegrationAzure
properties:
name: example_azure_storage_integration
enabled: true
storageAllowedLocations:
- azure://myaccount.blob.core.windows.net/mycontainer/allowed-location/
- azure://myaccount.blob.core.windows.net/mycontainer/allowed-location2/
storageBlockedLocations:
- azure://myaccount.blob.core.windows.net/mycontainer/blocked-location/
- azure://myaccount.blob.core.windows.net/mycontainer/blocked-location2/
usePrivatelinkEndpoint: 'true'
comment: some comment
azureTenantId: a123b4c5-1234-123a-a12b-1a23b45678c9
Note If a field has a default value, it is shown next to the type in the schema.
Create StorageIntegrationAzure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StorageIntegrationAzure(name: string, args: StorageIntegrationAzureArgs, opts?: CustomResourceOptions);@overload
def StorageIntegrationAzure(resource_name: str,
args: StorageIntegrationAzureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StorageIntegrationAzure(resource_name: str,
opts: Optional[ResourceOptions] = None,
azure_tenant_id: Optional[str] = None,
enabled: Optional[bool] = None,
storage_allowed_locations: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
name: Optional[str] = None,
storage_blocked_locations: Optional[Sequence[str]] = None,
use_privatelink_endpoint: Optional[str] = None)func NewStorageIntegrationAzure(ctx *Context, name string, args StorageIntegrationAzureArgs, opts ...ResourceOption) (*StorageIntegrationAzure, error)public StorageIntegrationAzure(string name, StorageIntegrationAzureArgs args, CustomResourceOptions? opts = null)
public StorageIntegrationAzure(String name, StorageIntegrationAzureArgs args)
public StorageIntegrationAzure(String name, StorageIntegrationAzureArgs args, CustomResourceOptions options)
type: snowflake:StorageIntegrationAzure
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args StorageIntegrationAzureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args StorageIntegrationAzureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args StorageIntegrationAzureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageIntegrationAzureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StorageIntegrationAzureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var storageIntegrationAzureResource = new Snowflake.StorageIntegrationAzure("storageIntegrationAzureResource", new()
{
AzureTenantId = "string",
Enabled = false,
StorageAllowedLocations = new[]
{
"string",
},
Comment = "string",
Name = "string",
StorageBlockedLocations = new[]
{
"string",
},
UsePrivatelinkEndpoint = "string",
});
example, err := snowflake.NewStorageIntegrationAzure(ctx, "storageIntegrationAzureResource", &snowflake.StorageIntegrationAzureArgs{
AzureTenantId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
StorageAllowedLocations: pulumi.StringArray{
pulumi.String("string"),
},
Comment: pulumi.String("string"),
Name: pulumi.String("string"),
StorageBlockedLocations: pulumi.StringArray{
pulumi.String("string"),
},
UsePrivatelinkEndpoint: pulumi.String("string"),
})
var storageIntegrationAzureResource = new StorageIntegrationAzure("storageIntegrationAzureResource", StorageIntegrationAzureArgs.builder()
.azureTenantId("string")
.enabled(false)
.storageAllowedLocations("string")
.comment("string")
.name("string")
.storageBlockedLocations("string")
.usePrivatelinkEndpoint("string")
.build());
storage_integration_azure_resource = snowflake.StorageIntegrationAzure("storageIntegrationAzureResource",
azure_tenant_id="string",
enabled=False,
storage_allowed_locations=["string"],
comment="string",
name="string",
storage_blocked_locations=["string"],
use_privatelink_endpoint="string")
const storageIntegrationAzureResource = new snowflake.StorageIntegrationAzure("storageIntegrationAzureResource", {
azureTenantId: "string",
enabled: false,
storageAllowedLocations: ["string"],
comment: "string",
name: "string",
storageBlockedLocations: ["string"],
usePrivatelinkEndpoint: "string",
});
type: snowflake:StorageIntegrationAzure
properties:
azureTenantId: string
comment: string
enabled: false
name: string
storageAllowedLocations:
- string
storageBlockedLocations:
- string
usePrivatelinkEndpoint: string
StorageIntegrationAzure Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The StorageIntegrationAzure resource accepts the following input properties:
- Azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- Enabled bool
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - Storage
Allowed List<string>Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- Comment string
- Specifies a comment for the storage integration.
- Name string
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Storage
Blocked List<string>Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- Use
Privatelink stringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- Enabled bool
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - Storage
Allowed []stringLocations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- Comment string
- Specifies a comment for the storage integration.
- Name string
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Storage
Blocked []stringLocations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- Use
Privatelink stringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure
Tenant StringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- enabled Boolean
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - storage
Allowed List<String>Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- comment String
- Specifies a comment for the storage integration.
- name String
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - storage
Blocked List<String>Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use
Privatelink StringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- enabled boolean
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - storage
Allowed string[]Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- comment string
- Specifies a comment for the storage integration.
- name string
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - storage
Blocked string[]Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use
Privatelink stringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure_
tenant_ strid - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- enabled bool
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - storage_
allowed_ Sequence[str]locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- comment str
- Specifies a comment for the storage integration.
- name str
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - storage_
blocked_ Sequence[str]locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use_
privatelink_ strendpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure
Tenant StringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- enabled Boolean
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - storage
Allowed List<String>Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- comment String
- Specifies a comment for the storage integration.
- name String
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - storage
Blocked List<String>Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use
Privatelink StringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageIntegrationAzure resource produces the following output properties:
- Describe
Outputs List<StorageIntegration Azure Describe Output> - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs List<StorageIntegration Azure Show Output> - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration.
- Describe
Outputs []StorageIntegration Azure Describe Output - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs []StorageIntegration Azure Show Output - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration.
- describe
Outputs List<StorageIntegration Azure Describe Output> - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<StorageIntegration Azure Show Output> - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration.
- describe
Outputs StorageIntegration Azure Describe Output[] - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- show
Outputs StorageIntegration Azure Show Output[] - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration.
- describe_
outputs Sequence[StorageIntegration Azure Describe Output] - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- id str
- The provider-assigned unique ID for this managed resource.
- show_
outputs Sequence[StorageIntegration Azure Show Output] - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<Property Map> - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration.
Look up Existing StorageIntegrationAzure Resource
Get an existing StorageIntegrationAzure resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: StorageIntegrationAzureState, opts?: CustomResourceOptions): StorageIntegrationAzure@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
azure_tenant_id: Optional[str] = None,
comment: Optional[str] = None,
describe_outputs: Optional[Sequence[StorageIntegrationAzureDescribeOutputArgs]] = None,
enabled: Optional[bool] = None,
fully_qualified_name: Optional[str] = None,
name: Optional[str] = None,
show_outputs: Optional[Sequence[StorageIntegrationAzureShowOutputArgs]] = None,
storage_allowed_locations: Optional[Sequence[str]] = None,
storage_blocked_locations: Optional[Sequence[str]] = None,
use_privatelink_endpoint: Optional[str] = None) -> StorageIntegrationAzurefunc GetStorageIntegrationAzure(ctx *Context, name string, id IDInput, state *StorageIntegrationAzureState, opts ...ResourceOption) (*StorageIntegrationAzure, error)public static StorageIntegrationAzure Get(string name, Input<string> id, StorageIntegrationAzureState? state, CustomResourceOptions? opts = null)public static StorageIntegrationAzure get(String name, Output<String> id, StorageIntegrationAzureState state, CustomResourceOptions options)resources: _: type: snowflake:StorageIntegrationAzure get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- Comment string
- Specifies a comment for the storage integration.
- Describe
Outputs List<StorageIntegration Azure Describe Output> - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - Enabled bool
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Show
Outputs List<StorageIntegration Azure Show Output> - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration. - Storage
Allowed List<string>Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- Storage
Blocked List<string>Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- Use
Privatelink stringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- Comment string
- Specifies a comment for the storage integration.
- Describe
Outputs []StorageIntegration Azure Describe Output Args - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - Enabled bool
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Show
Outputs []StorageIntegration Azure Show Output Args - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration. - Storage
Allowed []stringLocations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- Storage
Blocked []stringLocations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- Use
Privatelink stringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure
Tenant StringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- comment String
- Specifies a comment for the storage integration.
- describe
Outputs List<StorageIntegration Azure Describe Output> - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - enabled Boolean
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show
Outputs List<StorageIntegration Azure Show Output> - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration. - storage
Allowed List<String>Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- storage
Blocked List<String>Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use
Privatelink StringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- comment string
- Specifies a comment for the storage integration.
- describe
Outputs StorageIntegration Azure Describe Output[] - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - enabled boolean
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- name string
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show
Outputs StorageIntegration Azure Show Output[] - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration. - storage
Allowed string[]Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- storage
Blocked string[]Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use
Privatelink stringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure_
tenant_ strid - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- comment str
- Specifies a comment for the storage integration.
- describe_
outputs Sequence[StorageIntegration Azure Describe Output Args] - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - enabled bool
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- name str
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show_
outputs Sequence[StorageIntegration Azure Show Output Args] - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration. - storage_
allowed_ Sequence[str]locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- storage_
blocked_ Sequence[str]locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use_
privatelink_ strendpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- azure
Tenant StringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- comment String
- Specifies a comment for the storage integration.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE STORAGE INTEGRATIONfor the given storage integration. - enabled Boolean
- Specifies whether this storage integration is available for usage in stages.
TRUEallows users to create new stages that reference this integration. Existing stages that reference this integration function normally.FALSEprevents users from creating new stages that reference this integration. Existing stages that reference this integration cannot access the storage location in the stage definition. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- String that specifies the identifier (i.e. name) for the integration; must be unique in your account. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show
Outputs List<Property Map> - Outputs the result of
SHOW STORAGE INTEGRATIONSfor the given storage integration. - storage
Allowed List<String>Locations - Explicitly limits external stages that use the integration to reference one or more storage locations.
- storage
Blocked List<String>Locations - Explicitly prohibits external stages that use the integration from referencing one or more storage locations.
- use
Privatelink StringEndpoint - (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Specifies whether to use outbound private connectivity to harden the security posture. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
Supporting Types
StorageIntegrationAzureDescribeOutput, StorageIntegrationAzureDescribeOutputArgs
- Allowed
Locations List<string> - Blocked
Locations List<string> - Comment string
- Consent
Url string - Enabled bool
- Id string
- Multi
Tenant stringApp Name - Provider string
- Tenant
Id string - Use
Privatelink boolEndpoint
- Allowed
Locations []string - Blocked
Locations []string - Comment string
- Consent
Url string - Enabled bool
- Id string
- Multi
Tenant stringApp Name - Provider string
- Tenant
Id string - Use
Privatelink boolEndpoint
- allowed
Locations List<String> - blocked
Locations List<String> - comment String
- consent
Url String - enabled Boolean
- id String
- multi
Tenant StringApp Name - provider String
- tenant
Id String - use
Privatelink BooleanEndpoint
- allowed
Locations string[] - blocked
Locations string[] - comment string
- consent
Url string - enabled boolean
- id string
- multi
Tenant stringApp Name - provider string
- tenant
Id string - use
Privatelink booleanEndpoint
- allowed_
locations Sequence[str] - blocked_
locations Sequence[str] - comment str
- consent_
url str - enabled bool
- id str
- multi_
tenant_ strapp_ name - provider str
- tenant_
id str - use_
privatelink_ boolendpoint
- allowed
Locations List<String> - blocked
Locations List<String> - comment String
- consent
Url String - enabled Boolean
- id String
- multi
Tenant StringApp Name - provider String
- tenant
Id String - use
Privatelink BooleanEndpoint
StorageIntegrationAzureShowOutput, StorageIntegrationAzureShowOutputArgs
- category str
- comment str
- created_
on str - enabled bool
- name str
- storage_
type str
Import
$ pulumi import snowflake:index/storageIntegrationAzure:StorageIntegrationAzure example '"<storage_integration_name>"'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflakeTerraform Provider.
