azure logo
Azure Classic v5.38.0, Mar 21 23

azure.storage.getAccount

Use this data source to access information about an existing Storage Account.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = Azure.Storage.GetAccount.Invoke(new()
    {
        Name = "packerimages",
        ResourceGroupName = "packer-storage",
    });

    return new Dictionary<string, object?>
    {
        ["storageAccountTier"] = example.Apply(getAccountResult => getAccountResult.AccountTier),
    };
});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := storage.LookupAccount(ctx, &storage.LookupAccountArgs{
			Name:              "packerimages",
			ResourceGroupName: pulumi.StringRef("packer-storage"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("storageAccountTier", example.AccountTier)
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.storage.StorageFunctions;
import com.pulumi.azure.storage.inputs.GetAccountArgs;
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) {
        final var example = StorageFunctions.getAccount(GetAccountArgs.builder()
            .name("packerimages")
            .resourceGroupName("packer-storage")
            .build());

        ctx.export("storageAccountTier", example.applyValue(getAccountResult -> getAccountResult.accountTier()));
    }
}
import pulumi
import pulumi_azure as azure

example = azure.storage.get_account(name="packerimages",
    resource_group_name="packer-storage")
pulumi.export("storageAccountTier", example.account_tier)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.storage.getAccount({
    name: "packerimages",
    resourceGroupName: "packer-storage",
});
export const storageAccountTier = example.then(example => example.accountTier);
variables:
  example:
    fn::invoke:
      Function: azure:storage:getAccount
      Arguments:
        name: packerimages
        resourceGroupName: packer-storage
outputs:
  storageAccountTier: ${example.accountTier}

Using getAccount

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getAccount(args: GetAccountArgs, opts?: InvokeOptions): Promise<GetAccountResult>
function getAccountOutput(args: GetAccountOutputArgs, opts?: InvokeOptions): Output<GetAccountResult>
def get_account(min_tls_version: Optional[str] = None,
                name: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                opts: Optional[InvokeOptions] = None) -> GetAccountResult
def get_account_output(min_tls_version: Optional[pulumi.Input[str]] = None,
                name: Optional[pulumi.Input[str]] = None,
                resource_group_name: Optional[pulumi.Input[str]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetAccountResult]
func LookupAccount(ctx *Context, args *LookupAccountArgs, opts ...InvokeOption) (*LookupAccountResult, error)
func LookupAccountOutput(ctx *Context, args *LookupAccountOutputArgs, opts ...InvokeOption) LookupAccountResultOutput

> Note: This function is named LookupAccount in the Go SDK.

public static class GetAccount 
{
    public static Task<GetAccountResult> InvokeAsync(GetAccountArgs args, InvokeOptions? opts = null)
    public static Output<GetAccountResult> Invoke(GetAccountInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAccountResult> getAccount(GetAccountArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: azure:storage/getAccount:getAccount
  arguments:
    # arguments dictionary

The following arguments are supported:

Name string

Specifies the name of the Storage Account

MinTlsVersion string

The minimum supported TLS version for this storage account.

ResourceGroupName string

Specifies the name of the resource group the Storage Account is located in.

Name string

Specifies the name of the Storage Account

MinTlsVersion string

The minimum supported TLS version for this storage account.

ResourceGroupName string

Specifies the name of the resource group the Storage Account is located in.

name String

Specifies the name of the Storage Account

minTlsVersion String

The minimum supported TLS version for this storage account.

resourceGroupName String

Specifies the name of the resource group the Storage Account is located in.

name string

Specifies the name of the Storage Account

minTlsVersion string

The minimum supported TLS version for this storage account.

resourceGroupName string

Specifies the name of the resource group the Storage Account is located in.

name str

Specifies the name of the Storage Account

min_tls_version str

The minimum supported TLS version for this storage account.

resource_group_name str

Specifies the name of the resource group the Storage Account is located in.

name String

Specifies the name of the Storage Account

minTlsVersion String

The minimum supported TLS version for this storage account.

resourceGroupName String

Specifies the name of the resource group the Storage Account is located in.

getAccount Result

The following output properties are available:

AccessTier string

The access tier for BlobStorage accounts.

AccountKind string

The Kind of account.

AccountReplicationType string

The type of replication used for this storage account.

AccountTier string

The Tier of this storage account.

AllowNestedItemsToBePublic bool

Can nested items in the storage account opt into allowing public access?

AzureFilesAuthentications List<GetAccountAzureFilesAuthentication>

A azure_files_authentication block as documented below.

CustomDomains List<GetAccountCustomDomain>

supports the following:

EnableHttpsTrafficOnly bool

Is traffic only allowed via HTTPS? See here for more information.

Id string

The provider-assigned unique ID for this managed resource.

Identities List<GetAccountIdentity>

An identity block as documented below.

InfrastructureEncryptionEnabled bool

Is infrastructure encryption enabled? See here for more information.

IsHnsEnabled bool

Is Hierarchical Namespace enabled?

Location string

The Azure location where the Storage Account exists

Name string

The Custom Domain Name used for the Storage Account.

Nfsv3Enabled bool

Is NFSv3 protocol enabled?

PrimaryAccessKey string

The primary access key for the Storage Account.

PrimaryBlobConnectionString string

The connection string associated with the primary blob location

PrimaryBlobEndpoint string

The endpoint URL for blob storage in the primary location.

PrimaryBlobHost string

The hostname with port if applicable for blob storage in the primary location.

PrimaryConnectionString string

The connection string associated with the primary location

PrimaryDfsEndpoint string

The endpoint URL for DFS storage in the primary location.

PrimaryDfsHost string

The hostname with port if applicable for DFS storage in the primary location.

PrimaryFileEndpoint string

The endpoint URL for file storage in the primary location.

PrimaryFileHost string

The hostname with port if applicable for file storage in the primary location.

PrimaryLocation string

The primary location of the Storage Account.

PrimaryQueueEndpoint string

The endpoint URL for queue storage in the primary location.

PrimaryQueueHost string

The hostname with port if applicable for queue storage in the primary location.

PrimaryTableEndpoint string

The endpoint URL for table storage in the primary location.

PrimaryTableHost string

The hostname with port if applicable for table storage in the primary location.

PrimaryWebEndpoint string

The endpoint URL for web storage in the primary location.

PrimaryWebHost string

The hostname with port if applicable for web storage in the primary location.

QueueEncryptionKeyType string

The encryption key type of the queue.

SecondaryAccessKey string

The secondary access key for the Storage Account.

SecondaryBlobConnectionString string

The connection string associated with the secondary blob location

SecondaryBlobEndpoint string

The endpoint URL for blob storage in the secondary location.

SecondaryBlobHost string

The hostname with port if applicable for blob storage in the secondary location.

SecondaryConnectionString string

The connection string associated with the secondary location

SecondaryDfsEndpoint string

The endpoint URL for DFS storage in the secondary location.

SecondaryDfsHost string

The hostname with port if applicable for DFS storage in the secondary location.

SecondaryFileEndpoint string

The endpoint URL for file storage in the secondary location.

SecondaryFileHost string

The hostname with port if applicable for file storage in the secondary location.

SecondaryLocation string

The secondary location of the Storage Account.

SecondaryQueueEndpoint string

The endpoint URL for queue storage in the secondary location.

SecondaryQueueHost string

The hostname with port if applicable for queue storage in the secondary location.

SecondaryTableEndpoint string

The endpoint URL for table storage in the secondary location.

SecondaryTableHost string

The hostname with port if applicable for table storage in the secondary location.

SecondaryWebEndpoint string

The endpoint URL for web storage in the secondary location.

SecondaryWebHost string

The hostname with port if applicable for web storage in the secondary location.

TableEncryptionKeyType string

The encryption key type of the table.

Tags Dictionary<string, string>

A mapping of tags to assigned to the resource.

MinTlsVersion string

The minimum supported TLS version for this storage account.

ResourceGroupName string
AccessTier string

The access tier for BlobStorage accounts.

AccountKind string

The Kind of account.

AccountReplicationType string

The type of replication used for this storage account.

AccountTier string

The Tier of this storage account.

AllowNestedItemsToBePublic bool

Can nested items in the storage account opt into allowing public access?

AzureFilesAuthentications []GetAccountAzureFilesAuthentication

A azure_files_authentication block as documented below.

CustomDomains []GetAccountCustomDomain

supports the following:

EnableHttpsTrafficOnly bool

Is traffic only allowed via HTTPS? See here for more information.

Id string

The provider-assigned unique ID for this managed resource.

Identities []GetAccountIdentity

An identity block as documented below.

InfrastructureEncryptionEnabled bool

Is infrastructure encryption enabled? See here for more information.

IsHnsEnabled bool

Is Hierarchical Namespace enabled?

Location string

The Azure location where the Storage Account exists

Name string

The Custom Domain Name used for the Storage Account.

Nfsv3Enabled bool

Is NFSv3 protocol enabled?

PrimaryAccessKey string

The primary access key for the Storage Account.

PrimaryBlobConnectionString string

The connection string associated with the primary blob location

PrimaryBlobEndpoint string

The endpoint URL for blob storage in the primary location.

PrimaryBlobHost string

The hostname with port if applicable for blob storage in the primary location.

PrimaryConnectionString string

The connection string associated with the primary location

PrimaryDfsEndpoint string

The endpoint URL for DFS storage in the primary location.

PrimaryDfsHost string

The hostname with port if applicable for DFS storage in the primary location.

PrimaryFileEndpoint string

The endpoint URL for file storage in the primary location.

PrimaryFileHost string

The hostname with port if applicable for file storage in the primary location.

PrimaryLocation string

The primary location of the Storage Account.

PrimaryQueueEndpoint string

The endpoint URL for queue storage in the primary location.

PrimaryQueueHost string

The hostname with port if applicable for queue storage in the primary location.

PrimaryTableEndpoint string

The endpoint URL for table storage in the primary location.

PrimaryTableHost string

The hostname with port if applicable for table storage in the primary location.

PrimaryWebEndpoint string

The endpoint URL for web storage in the primary location.

PrimaryWebHost string

The hostname with port if applicable for web storage in the primary location.

QueueEncryptionKeyType string

The encryption key type of the queue.

SecondaryAccessKey string

The secondary access key for the Storage Account.

SecondaryBlobConnectionString string

The connection string associated with the secondary blob location

SecondaryBlobEndpoint string

The endpoint URL for blob storage in the secondary location.

SecondaryBlobHost string

The hostname with port if applicable for blob storage in the secondary location.

SecondaryConnectionString string

The connection string associated with the secondary location

SecondaryDfsEndpoint string

The endpoint URL for DFS storage in the secondary location.

SecondaryDfsHost string

The hostname with port if applicable for DFS storage in the secondary location.

SecondaryFileEndpoint string

The endpoint URL for file storage in the secondary location.

SecondaryFileHost string

The hostname with port if applicable for file storage in the secondary location.

SecondaryLocation string

The secondary location of the Storage Account.

SecondaryQueueEndpoint string

The endpoint URL for queue storage in the secondary location.

SecondaryQueueHost string

The hostname with port if applicable for queue storage in the secondary location.

SecondaryTableEndpoint string

The endpoint URL for table storage in the secondary location.

SecondaryTableHost string

The hostname with port if applicable for table storage in the secondary location.

SecondaryWebEndpoint string

The endpoint URL for web storage in the secondary location.

SecondaryWebHost string

The hostname with port if applicable for web storage in the secondary location.

TableEncryptionKeyType string

The encryption key type of the table.

Tags map[string]string

A mapping of tags to assigned to the resource.

MinTlsVersion string

The minimum supported TLS version for this storage account.

ResourceGroupName string
accessTier String

The access tier for BlobStorage accounts.

accountKind String

The Kind of account.

accountReplicationType String

The type of replication used for this storage account.

accountTier String

The Tier of this storage account.

allowNestedItemsToBePublic Boolean

Can nested items in the storage account opt into allowing public access?

azureFilesAuthentications List<GetAccountAzureFilesAuthentication>

A azure_files_authentication block as documented below.

customDomains List<GetAccountCustomDomain>

supports the following:

enableHttpsTrafficOnly Boolean

Is traffic only allowed via HTTPS? See here for more information.

id String

The provider-assigned unique ID for this managed resource.

identities List<GetAccountIdentity>

An identity block as documented below.

infrastructureEncryptionEnabled Boolean

Is infrastructure encryption enabled? See here for more information.

isHnsEnabled Boolean

Is Hierarchical Namespace enabled?

location String

The Azure location where the Storage Account exists

name String

The Custom Domain Name used for the Storage Account.

nfsv3Enabled Boolean

Is NFSv3 protocol enabled?

primaryAccessKey String

The primary access key for the Storage Account.

primaryBlobConnectionString String

The connection string associated with the primary blob location

primaryBlobEndpoint String

The endpoint URL for blob storage in the primary location.

primaryBlobHost String

The hostname with port if applicable for blob storage in the primary location.

primaryConnectionString String

The connection string associated with the primary location

primaryDfsEndpoint String

The endpoint URL for DFS storage in the primary location.

primaryDfsHost String

The hostname with port if applicable for DFS storage in the primary location.

primaryFileEndpoint String

The endpoint URL for file storage in the primary location.

primaryFileHost String

The hostname with port if applicable for file storage in the primary location.

primaryLocation String

The primary location of the Storage Account.

primaryQueueEndpoint String

The endpoint URL for queue storage in the primary location.

primaryQueueHost String

The hostname with port if applicable for queue storage in the primary location.

primaryTableEndpoint String

The endpoint URL for table storage in the primary location.

primaryTableHost String

The hostname with port if applicable for table storage in the primary location.

primaryWebEndpoint String

The endpoint URL for web storage in the primary location.

primaryWebHost String

The hostname with port if applicable for web storage in the primary location.

queueEncryptionKeyType String

The encryption key type of the queue.

secondaryAccessKey String

The secondary access key for the Storage Account.

secondaryBlobConnectionString String

The connection string associated with the secondary blob location

secondaryBlobEndpoint String

The endpoint URL for blob storage in the secondary location.

secondaryBlobHost String

The hostname with port if applicable for blob storage in the secondary location.

secondaryConnectionString String

The connection string associated with the secondary location

secondaryDfsEndpoint String

The endpoint URL for DFS storage in the secondary location.

secondaryDfsHost String

The hostname with port if applicable for DFS storage in the secondary location.

secondaryFileEndpoint String

The endpoint URL for file storage in the secondary location.

secondaryFileHost String

The hostname with port if applicable for file storage in the secondary location.

secondaryLocation String

The secondary location of the Storage Account.

secondaryQueueEndpoint String

The endpoint URL for queue storage in the secondary location.

secondaryQueueHost String

The hostname with port if applicable for queue storage in the secondary location.

secondaryTableEndpoint String

The endpoint URL for table storage in the secondary location.

secondaryTableHost String

The hostname with port if applicable for table storage in the secondary location.

secondaryWebEndpoint String

The endpoint URL for web storage in the secondary location.

secondaryWebHost String

The hostname with port if applicable for web storage in the secondary location.

tableEncryptionKeyType String

The encryption key type of the table.

tags Map<String,String>

A mapping of tags to assigned to the resource.

minTlsVersion String

The minimum supported TLS version for this storage account.

resourceGroupName String
accessTier string

The access tier for BlobStorage accounts.

accountKind string

The Kind of account.

accountReplicationType string

The type of replication used for this storage account.

accountTier string

The Tier of this storage account.

allowNestedItemsToBePublic boolean

Can nested items in the storage account opt into allowing public access?

azureFilesAuthentications GetAccountAzureFilesAuthentication[]

A azure_files_authentication block as documented below.

customDomains GetAccountCustomDomain[]

supports the following:

enableHttpsTrafficOnly boolean

Is traffic only allowed via HTTPS? See here for more information.

id string

The provider-assigned unique ID for this managed resource.

identities GetAccountIdentity[]

An identity block as documented below.

infrastructureEncryptionEnabled boolean

Is infrastructure encryption enabled? See here for more information.

isHnsEnabled boolean

Is Hierarchical Namespace enabled?

location string

The Azure location where the Storage Account exists

name string

The Custom Domain Name used for the Storage Account.

nfsv3Enabled boolean

Is NFSv3 protocol enabled?

primaryAccessKey string

The primary access key for the Storage Account.

primaryBlobConnectionString string

The connection string associated with the primary blob location

primaryBlobEndpoint string

The endpoint URL for blob storage in the primary location.

primaryBlobHost string

The hostname with port if applicable for blob storage in the primary location.

primaryConnectionString string

The connection string associated with the primary location

primaryDfsEndpoint string

The endpoint URL for DFS storage in the primary location.

primaryDfsHost string

The hostname with port if applicable for DFS storage in the primary location.

primaryFileEndpoint string

The endpoint URL for file storage in the primary location.

primaryFileHost string

The hostname with port if applicable for file storage in the primary location.

primaryLocation string

The primary location of the Storage Account.

primaryQueueEndpoint string

The endpoint URL for queue storage in the primary location.

primaryQueueHost string

The hostname with port if applicable for queue storage in the primary location.

primaryTableEndpoint string

The endpoint URL for table storage in the primary location.

primaryTableHost string

The hostname with port if applicable for table storage in the primary location.

primaryWebEndpoint string

The endpoint URL for web storage in the primary location.

primaryWebHost string

The hostname with port if applicable for web storage in the primary location.

queueEncryptionKeyType string

The encryption key type of the queue.

secondaryAccessKey string

The secondary access key for the Storage Account.

secondaryBlobConnectionString string

The connection string associated with the secondary blob location

secondaryBlobEndpoint string

The endpoint URL for blob storage in the secondary location.

secondaryBlobHost string

The hostname with port if applicable for blob storage in the secondary location.

secondaryConnectionString string

The connection string associated with the secondary location

secondaryDfsEndpoint string

The endpoint URL for DFS storage in the secondary location.

secondaryDfsHost string

The hostname with port if applicable for DFS storage in the secondary location.

secondaryFileEndpoint string

The endpoint URL for file storage in the secondary location.

secondaryFileHost string

The hostname with port if applicable for file storage in the secondary location.

secondaryLocation string

The secondary location of the Storage Account.

secondaryQueueEndpoint string

The endpoint URL for queue storage in the secondary location.

secondaryQueueHost string

The hostname with port if applicable for queue storage in the secondary location.

secondaryTableEndpoint string

The endpoint URL for table storage in the secondary location.

secondaryTableHost string

The hostname with port if applicable for table storage in the secondary location.

secondaryWebEndpoint string

The endpoint URL for web storage in the secondary location.

secondaryWebHost string

The hostname with port if applicable for web storage in the secondary location.

tableEncryptionKeyType string

The encryption key type of the table.

tags {[key: string]: string}

A mapping of tags to assigned to the resource.

minTlsVersion string

The minimum supported TLS version for this storage account.

resourceGroupName string
access_tier str

The access tier for BlobStorage accounts.

account_kind str

The Kind of account.

account_replication_type str

The type of replication used for this storage account.

account_tier str

The Tier of this storage account.

allow_nested_items_to_be_public bool

Can nested items in the storage account opt into allowing public access?

azure_files_authentications Sequence[GetAccountAzureFilesAuthentication]

A azure_files_authentication block as documented below.

custom_domains Sequence[GetAccountCustomDomain]

supports the following:

enable_https_traffic_only bool

Is traffic only allowed via HTTPS? See here for more information.

id str

The provider-assigned unique ID for this managed resource.

identities Sequence[GetAccountIdentity]

An identity block as documented below.

infrastructure_encryption_enabled bool

Is infrastructure encryption enabled? See here for more information.

is_hns_enabled bool

Is Hierarchical Namespace enabled?

location str

The Azure location where the Storage Account exists

name str

The Custom Domain Name used for the Storage Account.

nfsv3_enabled bool

Is NFSv3 protocol enabled?

primary_access_key str

The primary access key for the Storage Account.

primary_blob_connection_string str

The connection string associated with the primary blob location

primary_blob_endpoint str

The endpoint URL for blob storage in the primary location.

primary_blob_host str

The hostname with port if applicable for blob storage in the primary location.

primary_connection_string str

The connection string associated with the primary location

primary_dfs_endpoint str

The endpoint URL for DFS storage in the primary location.

primary_dfs_host str

The hostname with port if applicable for DFS storage in the primary location.

primary_file_endpoint str

The endpoint URL for file storage in the primary location.

primary_file_host str

The hostname with port if applicable for file storage in the primary location.

primary_location str

The primary location of the Storage Account.

primary_queue_endpoint str

The endpoint URL for queue storage in the primary location.

primary_queue_host str

The hostname with port if applicable for queue storage in the primary location.

primary_table_endpoint str

The endpoint URL for table storage in the primary location.

primary_table_host str

The hostname with port if applicable for table storage in the primary location.

primary_web_endpoint str

The endpoint URL for web storage in the primary location.

primary_web_host str

The hostname with port if applicable for web storage in the primary location.

queue_encryption_key_type str

The encryption key type of the queue.

secondary_access_key str

The secondary access key for the Storage Account.

secondary_blob_connection_string str

The connection string associated with the secondary blob location

secondary_blob_endpoint str

The endpoint URL for blob storage in the secondary location.

secondary_blob_host str

The hostname with port if applicable for blob storage in the secondary location.

secondary_connection_string str

The connection string associated with the secondary location

secondary_dfs_endpoint str

The endpoint URL for DFS storage in the secondary location.

secondary_dfs_host str

The hostname with port if applicable for DFS storage in the secondary location.

secondary_file_endpoint str

The endpoint URL for file storage in the secondary location.

secondary_file_host str

The hostname with port if applicable for file storage in the secondary location.

secondary_location str

The secondary location of the Storage Account.

secondary_queue_endpoint str

The endpoint URL for queue storage in the secondary location.

secondary_queue_host str

The hostname with port if applicable for queue storage in the secondary location.

secondary_table_endpoint str

The endpoint URL for table storage in the secondary location.

secondary_table_host str

The hostname with port if applicable for table storage in the secondary location.

secondary_web_endpoint str

The endpoint URL for web storage in the secondary location.

secondary_web_host str

The hostname with port if applicable for web storage in the secondary location.

table_encryption_key_type str

The encryption key type of the table.

tags Mapping[str, str]

A mapping of tags to assigned to the resource.

min_tls_version str

The minimum supported TLS version for this storage account.

resource_group_name str
accessTier String

The access tier for BlobStorage accounts.

accountKind String

The Kind of account.

accountReplicationType String

The type of replication used for this storage account.

accountTier String

The Tier of this storage account.

allowNestedItemsToBePublic Boolean

Can nested items in the storage account opt into allowing public access?

azureFilesAuthentications List<Property Map>

A azure_files_authentication block as documented below.

customDomains List<Property Map>

supports the following:

enableHttpsTrafficOnly Boolean

Is traffic only allowed via HTTPS? See here for more information.

id String

The provider-assigned unique ID for this managed resource.

identities List<Property Map>

An identity block as documented below.

infrastructureEncryptionEnabled Boolean

Is infrastructure encryption enabled? See here for more information.

isHnsEnabled Boolean

Is Hierarchical Namespace enabled?

location String

The Azure location where the Storage Account exists

name String

The Custom Domain Name used for the Storage Account.

nfsv3Enabled Boolean

Is NFSv3 protocol enabled?

primaryAccessKey String

The primary access key for the Storage Account.

primaryBlobConnectionString String

The connection string associated with the primary blob location

primaryBlobEndpoint String

The endpoint URL for blob storage in the primary location.

primaryBlobHost String

The hostname with port if applicable for blob storage in the primary location.

primaryConnectionString String

The connection string associated with the primary location

primaryDfsEndpoint String

The endpoint URL for DFS storage in the primary location.

primaryDfsHost String

The hostname with port if applicable for DFS storage in the primary location.

primaryFileEndpoint String

The endpoint URL for file storage in the primary location.

primaryFileHost String

The hostname with port if applicable for file storage in the primary location.

primaryLocation String

The primary location of the Storage Account.

primaryQueueEndpoint String

The endpoint URL for queue storage in the primary location.

primaryQueueHost String

The hostname with port if applicable for queue storage in the primary location.

primaryTableEndpoint String

The endpoint URL for table storage in the primary location.

primaryTableHost String

The hostname with port if applicable for table storage in the primary location.

primaryWebEndpoint String

The endpoint URL for web storage in the primary location.

primaryWebHost String

The hostname with port if applicable for web storage in the primary location.

queueEncryptionKeyType String

The encryption key type of the queue.

secondaryAccessKey String

The secondary access key for the Storage Account.

secondaryBlobConnectionString String

The connection string associated with the secondary blob location

secondaryBlobEndpoint String

The endpoint URL for blob storage in the secondary location.

secondaryBlobHost String

The hostname with port if applicable for blob storage in the secondary location.

secondaryConnectionString String

The connection string associated with the secondary location

secondaryDfsEndpoint String

The endpoint URL for DFS storage in the secondary location.

secondaryDfsHost String

The hostname with port if applicable for DFS storage in the secondary location.

secondaryFileEndpoint String

The endpoint URL for file storage in the secondary location.

secondaryFileHost String

The hostname with port if applicable for file storage in the secondary location.

secondaryLocation String

The secondary location of the Storage Account.

secondaryQueueEndpoint String

The endpoint URL for queue storage in the secondary location.

secondaryQueueHost String

The hostname with port if applicable for queue storage in the secondary location.

secondaryTableEndpoint String

The endpoint URL for table storage in the secondary location.

secondaryTableHost String

The hostname with port if applicable for table storage in the secondary location.

secondaryWebEndpoint String

The endpoint URL for web storage in the secondary location.

secondaryWebHost String

The hostname with port if applicable for web storage in the secondary location.

tableEncryptionKeyType String

The encryption key type of the table.

tags Map<String>

A mapping of tags to assigned to the resource.

minTlsVersion String

The minimum supported TLS version for this storage account.

resourceGroupName String

Supporting Types

GetAccountAzureFilesAuthentication

ActiveDirectories List<GetAccountAzureFilesAuthenticationActiveDirectory>

An active_directory block as documented below.

DirectoryType string

The directory service used for this Storage Account.

ActiveDirectories []GetAccountAzureFilesAuthenticationActiveDirectory

An active_directory block as documented below.

DirectoryType string

The directory service used for this Storage Account.

activeDirectories List<GetAccountAzureFilesAuthenticationActiveDirectory>

An active_directory block as documented below.

directoryType String

The directory service used for this Storage Account.

activeDirectories GetAccountAzureFilesAuthenticationActiveDirectory[]

An active_directory block as documented below.

directoryType string

The directory service used for this Storage Account.

active_directories Sequence[GetAccountAzureFilesAuthenticationActiveDirectory]

An active_directory block as documented below.

directory_type str

The directory service used for this Storage Account.

activeDirectories List<Property Map>

An active_directory block as documented below.

directoryType String

The directory service used for this Storage Account.

GetAccountAzureFilesAuthenticationActiveDirectory

DomainGuid string

The domain GUID.

DomainName string

The primary domain that the AD DNS server is authoritative for.

DomainSid string

The domain security identifier.

ForestName string

The name of the Active Directory forest.

NetbiosDomainName string

The NetBIOS domain name.

StorageSid string

The security identifier for Azure Storage.

DomainGuid string

The domain GUID.

DomainName string

The primary domain that the AD DNS server is authoritative for.

DomainSid string

The domain security identifier.

ForestName string

The name of the Active Directory forest.

NetbiosDomainName string

The NetBIOS domain name.

StorageSid string

The security identifier for Azure Storage.

domainGuid String

The domain GUID.

domainName String

The primary domain that the AD DNS server is authoritative for.

domainSid String

The domain security identifier.

forestName String

The name of the Active Directory forest.

netbiosDomainName String

The NetBIOS domain name.

storageSid String

The security identifier for Azure Storage.

domainGuid string

The domain GUID.

domainName string

The primary domain that the AD DNS server is authoritative for.

domainSid string

The domain security identifier.

forestName string

The name of the Active Directory forest.

netbiosDomainName string

The NetBIOS domain name.

storageSid string

The security identifier for Azure Storage.

domain_guid str

The domain GUID.

domain_name str

The primary domain that the AD DNS server is authoritative for.

domain_sid str

The domain security identifier.

forest_name str

The name of the Active Directory forest.

netbios_domain_name str

The NetBIOS domain name.

storage_sid str

The security identifier for Azure Storage.

domainGuid String

The domain GUID.

domainName String

The primary domain that the AD DNS server is authoritative for.

domainSid String

The domain security identifier.

forestName String

The name of the Active Directory forest.

netbiosDomainName String

The NetBIOS domain name.

storageSid String

The security identifier for Azure Storage.

GetAccountCustomDomain

Name string

Specifies the name of the Storage Account

Name string

Specifies the name of the Storage Account

name String

Specifies the name of the Storage Account

name string

Specifies the name of the Storage Account

name str

Specifies the name of the Storage Account

name String

Specifies the name of the Storage Account

GetAccountIdentity

IdentityIds List<string>

A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.

PrincipalId string

The Principal ID for the Service Principal associated with the Identity of this Storage Account.

TenantId string

The Tenant ID for the Service Principal associated with the Identity of this Storage Account.

Type string

The type of Managed Service Identity that is configured on this Storage Account

IdentityIds []string

A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.

PrincipalId string

The Principal ID for the Service Principal associated with the Identity of this Storage Account.

TenantId string

The Tenant ID for the Service Principal associated with the Identity of this Storage Account.

Type string

The type of Managed Service Identity that is configured on this Storage Account

identityIds List<String>

A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.

principalId String

The Principal ID for the Service Principal associated with the Identity of this Storage Account.

tenantId String

The Tenant ID for the Service Principal associated with the Identity of this Storage Account.

type String

The type of Managed Service Identity that is configured on this Storage Account

identityIds string[]

A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.

principalId string

The Principal ID for the Service Principal associated with the Identity of this Storage Account.

tenantId string

The Tenant ID for the Service Principal associated with the Identity of this Storage Account.

type string

The type of Managed Service Identity that is configured on this Storage Account

identity_ids Sequence[str]

A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.

principal_id str

The Principal ID for the Service Principal associated with the Identity of this Storage Account.

tenant_id str

The Tenant ID for the Service Principal associated with the Identity of this Storage Account.

type str

The type of Managed Service Identity that is configured on this Storage Account

identityIds List<String>

A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.

principalId String

The Principal ID for the Service Principal associated with the Identity of this Storage Account.

tenantId String

The Tenant ID for the Service Principal associated with the Identity of this Storage Account.

type String

The type of Managed Service Identity that is configured on this Storage Account

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.