We recommend using Azure Native.
Azure Classic v5.81.0 published on Monday, Jun 24, 2024 by Pulumi
azure.storage.getAccount
Explore with Pulumi AI
Use this data source to access information about an existing Storage Account.
Example Usage
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);
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)
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
})
}
using System.Collections.Generic;
using System.Linq;
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 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()));
}
}
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
- Min
Tls stringVersion - The minimum supported TLS version for this storage account.
- Resource
Group stringName - Specifies the name of the resource group the Storage Account is located in.
- Name string
- Specifies the name of the Storage Account
- Min
Tls stringVersion - The minimum supported TLS version for this storage account.
- Resource
Group stringName - Specifies the name of the resource group the Storage Account is located in.
- name String
- Specifies the name of the Storage Account
- min
Tls StringVersion - The minimum supported TLS version for this storage account.
- resource
Group StringName - Specifies the name of the resource group the Storage Account is located in.
- name string
- Specifies the name of the Storage Account
- min
Tls stringVersion - The minimum supported TLS version for this storage account.
- resource
Group stringName - Specifies the name of the resource group the Storage Account is located in.
- name str
- Specifies the name of the Storage Account
- min_
tls_ strversion - The minimum supported TLS version for this storage account.
- resource_
group_ strname - Specifies the name of the resource group the Storage Account is located in.
- name String
- Specifies the name of the Storage Account
- min
Tls StringVersion - The minimum supported TLS version for this storage account.
- resource
Group StringName - Specifies the name of the resource group the Storage Account is located in.
getAccount Result
The following output properties are available:
- Access
Tier string - The access tier for
BlobStorage
accounts. - Account
Kind string - The Kind of account.
- Account
Replication stringType - The type of replication used for this storage account.
- Account
Tier string - The Tier of this storage account.
- Allow
Nested boolItems To Be Public - Can nested items in the storage account opt into allowing public access?
- Azure
Files List<GetAuthentications Account Azure Files Authentication> - A
azure_files_authentication
block as documented below. - Custom
Domains List<GetAccount Custom Domain> - supports the following:
- Enable
Https boolTraffic Only - Is traffic only allowed via HTTPS? See here for more information.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
List<Get
Account Identity> - An
identity
block as documented below. - Infrastructure
Encryption boolEnabled - Is infrastructure encryption enabled? See here for more information.
- Is
Hns boolEnabled - 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?
- Primary
Access stringKey - The primary access key for the Storage Account.
- Primary
Blob stringConnection String - The connection string associated with the primary blob location
- Primary
Blob stringEndpoint - The endpoint URL for blob storage in the primary location.
- Primary
Blob stringHost - The hostname with port if applicable for blob storage in the primary location.
- Primary
Blob stringInternet Endpoint - The internet routing endpoint URL for blob storage in the primary location.
- Primary
Blob stringInternet Host - The internet routing hostname with port if applicable for blob storage in the primary location.
- Primary
Blob stringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the primary location.
- Primary
Blob stringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the primary location.
- Primary
Connection stringString - The connection string associated with the primary location
- Primary
Dfs stringEndpoint - The endpoint URL for DFS storage in the primary location.
- Primary
Dfs stringHost - The hostname with port if applicable for DFS storage in the primary location.
- Primary
Dfs stringInternet Endpoint - The internet routing endpoint URL for DFS storage in the primary location.
- Primary
Dfs stringInternet Host - The internet routing hostname with port if applicable for DFS storage in the primary location.
- Primary
Dfs stringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the primary location.
- Primary
Dfs stringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the primary location.
- Primary
File stringEndpoint - The endpoint URL for file storage in the primary location.
- Primary
File stringHost - The hostname with port if applicable for file storage in the primary location.
- Primary
File stringInternet Endpoint - The internet routing endpoint URL for file storage in the primary location.
- Primary
File stringInternet Host - The internet routing hostname with port if applicable for file storage in the primary location.
- Primary
File stringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the primary location.
- Primary
File stringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the primary location.
- Primary
Location string - The primary location of the Storage Account.
- Primary
Queue stringEndpoint - The endpoint URL for queue storage in the primary location.
- Primary
Queue stringHost - The hostname with port if applicable for queue storage in the primary location.
- Primary
Queue stringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the primary location.
- Primary
Queue stringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the primary location.
- Primary
Table stringEndpoint - The endpoint URL for table storage in the primary location.
- Primary
Table stringHost - The hostname with port if applicable for table storage in the primary location.
- Primary
Table stringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the primary location.
- Primary
Table stringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the primary location.
- Primary
Web stringEndpoint - The endpoint URL for web storage in the primary location.
- Primary
Web stringHost - The hostname with port if applicable for web storage in the primary location.
- Primary
Web stringInternet Endpoint - The internet routing endpoint URL for web storage in the primary location.
- Primary
Web stringInternet Host - The internet routing hostname with port if applicable for web storage in the primary location.
- Primary
Web stringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the primary location.
- Primary
Web stringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the primary location.
- Queue
Encryption stringKey Type - The encryption key type of the queue.
- Secondary
Access stringKey - The secondary access key for the Storage Account.
- Secondary
Blob stringConnection String - The connection string associated with the secondary blob location
- Secondary
Blob stringEndpoint - The endpoint URL for blob storage in the secondary location.
- Secondary
Blob stringHost - The hostname with port if applicable for blob storage in the secondary location.
- Secondary
Blob stringInternet Endpoint - The internet routing endpoint URL for blob storage in the secondary location.
- Secondary
Blob stringInternet Host - The internet routing hostname with port if applicable for blob storage in the secondary location.
- Secondary
Blob stringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the secondary location.
- Secondary
Blob stringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the secondary location.
- Secondary
Connection stringString - The connection string associated with the secondary location
- Secondary
Dfs stringEndpoint - The endpoint URL for DFS storage in the secondary location.
- Secondary
Dfs stringHost - The hostname with port if applicable for DFS storage in the secondary location.
- Secondary
Dfs stringInternet Endpoint - The internet routing endpoint URL for DFS storage in the secondary location.
- Secondary
Dfs stringInternet Host - The internet routing hostname with port if applicable for DFS storage in the secondary location.
- Secondary
Dfs stringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the secondary location.
- Secondary
Dfs stringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the secondary location.
- Secondary
File stringEndpoint - The endpoint URL for file storage in the secondary location.
- Secondary
File stringHost - The hostname with port if applicable for file storage in the secondary location.
- Secondary
File stringInternet Endpoint - The internet routing endpoint URL for file storage in the secondary location.
- Secondary
File stringInternet Host - The internet routing hostname with port if applicable for file storage in the secondary location.
- Secondary
File stringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the secondary location.
- Secondary
File stringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the secondary location.
- Secondary
Location string - The secondary location of the Storage Account.
- Secondary
Queue stringEndpoint - The endpoint URL for queue storage in the secondary location.
- Secondary
Queue stringHost - The hostname with port if applicable for queue storage in the secondary location.
- Secondary
Queue stringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the secondary location.
- Secondary
Queue stringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the secondary location.
- Secondary
Table stringEndpoint - The endpoint URL for table storage in the secondary location.
- Secondary
Table stringHost - The hostname with port if applicable for table storage in the secondary location.
- Secondary
Table stringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the secondary location.
- Secondary
Table stringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the secondary location.
- Secondary
Web stringEndpoint - The endpoint URL for web storage in the secondary location.
- Secondary
Web stringHost - The hostname with port if applicable for web storage in the secondary location.
- Secondary
Web stringInternet Endpoint - The internet routing endpoint URL for web storage in the secondary location.
- Secondary
Web stringInternet Host - The internet routing hostname with port if applicable for web storage in the secondary location.
- Secondary
Web stringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the secondary location.
- Secondary
Web stringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the secondary location.
- Table
Encryption stringKey Type - The encryption key type of the table.
- Dictionary<string, string>
- A mapping of tags to assigned to the resource.
- Min
Tls stringVersion - The minimum supported TLS version for this storage account.
- Resource
Group stringName
- Access
Tier string - The access tier for
BlobStorage
accounts. - Account
Kind string - The Kind of account.
- Account
Replication stringType - The type of replication used for this storage account.
- Account
Tier string - The Tier of this storage account.
- Allow
Nested boolItems To Be Public - Can nested items in the storage account opt into allowing public access?
- Azure
Files []GetAuthentications Account Azure Files Authentication - A
azure_files_authentication
block as documented below. - Custom
Domains []GetAccount Custom Domain - supports the following:
- Enable
Https boolTraffic Only - Is traffic only allowed via HTTPS? See here for more information.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
[]Get
Account Identity - An
identity
block as documented below. - Infrastructure
Encryption boolEnabled - Is infrastructure encryption enabled? See here for more information.
- Is
Hns boolEnabled - 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?
- Primary
Access stringKey - The primary access key for the Storage Account.
- Primary
Blob stringConnection String - The connection string associated with the primary blob location
- Primary
Blob stringEndpoint - The endpoint URL for blob storage in the primary location.
- Primary
Blob stringHost - The hostname with port if applicable for blob storage in the primary location.
- Primary
Blob stringInternet Endpoint - The internet routing endpoint URL for blob storage in the primary location.
- Primary
Blob stringInternet Host - The internet routing hostname with port if applicable for blob storage in the primary location.
- Primary
Blob stringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the primary location.
- Primary
Blob stringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the primary location.
- Primary
Connection stringString - The connection string associated with the primary location
- Primary
Dfs stringEndpoint - The endpoint URL for DFS storage in the primary location.
- Primary
Dfs stringHost - The hostname with port if applicable for DFS storage in the primary location.
- Primary
Dfs stringInternet Endpoint - The internet routing endpoint URL for DFS storage in the primary location.
- Primary
Dfs stringInternet Host - The internet routing hostname with port if applicable for DFS storage in the primary location.
- Primary
Dfs stringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the primary location.
- Primary
Dfs stringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the primary location.
- Primary
File stringEndpoint - The endpoint URL for file storage in the primary location.
- Primary
File stringHost - The hostname with port if applicable for file storage in the primary location.
- Primary
File stringInternet Endpoint - The internet routing endpoint URL for file storage in the primary location.
- Primary
File stringInternet Host - The internet routing hostname with port if applicable for file storage in the primary location.
- Primary
File stringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the primary location.
- Primary
File stringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the primary location.
- Primary
Location string - The primary location of the Storage Account.
- Primary
Queue stringEndpoint - The endpoint URL for queue storage in the primary location.
- Primary
Queue stringHost - The hostname with port if applicable for queue storage in the primary location.
- Primary
Queue stringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the primary location.
- Primary
Queue stringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the primary location.
- Primary
Table stringEndpoint - The endpoint URL for table storage in the primary location.
- Primary
Table stringHost - The hostname with port if applicable for table storage in the primary location.
- Primary
Table stringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the primary location.
- Primary
Table stringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the primary location.
- Primary
Web stringEndpoint - The endpoint URL for web storage in the primary location.
- Primary
Web stringHost - The hostname with port if applicable for web storage in the primary location.
- Primary
Web stringInternet Endpoint - The internet routing endpoint URL for web storage in the primary location.
- Primary
Web stringInternet Host - The internet routing hostname with port if applicable for web storage in the primary location.
- Primary
Web stringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the primary location.
- Primary
Web stringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the primary location.
- Queue
Encryption stringKey Type - The encryption key type of the queue.
- Secondary
Access stringKey - The secondary access key for the Storage Account.
- Secondary
Blob stringConnection String - The connection string associated with the secondary blob location
- Secondary
Blob stringEndpoint - The endpoint URL for blob storage in the secondary location.
- Secondary
Blob stringHost - The hostname with port if applicable for blob storage in the secondary location.
- Secondary
Blob stringInternet Endpoint - The internet routing endpoint URL for blob storage in the secondary location.
- Secondary
Blob stringInternet Host - The internet routing hostname with port if applicable for blob storage in the secondary location.
- Secondary
Blob stringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the secondary location.
- Secondary
Blob stringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the secondary location.
- Secondary
Connection stringString - The connection string associated with the secondary location
- Secondary
Dfs stringEndpoint - The endpoint URL for DFS storage in the secondary location.
- Secondary
Dfs stringHost - The hostname with port if applicable for DFS storage in the secondary location.
- Secondary
Dfs stringInternet Endpoint - The internet routing endpoint URL for DFS storage in the secondary location.
- Secondary
Dfs stringInternet Host - The internet routing hostname with port if applicable for DFS storage in the secondary location.
- Secondary
Dfs stringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the secondary location.
- Secondary
Dfs stringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the secondary location.
- Secondary
File stringEndpoint - The endpoint URL for file storage in the secondary location.
- Secondary
File stringHost - The hostname with port if applicable for file storage in the secondary location.
- Secondary
File stringInternet Endpoint - The internet routing endpoint URL for file storage in the secondary location.
- Secondary
File stringInternet Host - The internet routing hostname with port if applicable for file storage in the secondary location.
- Secondary
File stringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the secondary location.
- Secondary
File stringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the secondary location.
- Secondary
Location string - The secondary location of the Storage Account.
- Secondary
Queue stringEndpoint - The endpoint URL for queue storage in the secondary location.
- Secondary
Queue stringHost - The hostname with port if applicable for queue storage in the secondary location.
- Secondary
Queue stringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the secondary location.
- Secondary
Queue stringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the secondary location.
- Secondary
Table stringEndpoint - The endpoint URL for table storage in the secondary location.
- Secondary
Table stringHost - The hostname with port if applicable for table storage in the secondary location.
- Secondary
Table stringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the secondary location.
- Secondary
Table stringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the secondary location.
- Secondary
Web stringEndpoint - The endpoint URL for web storage in the secondary location.
- Secondary
Web stringHost - The hostname with port if applicable for web storage in the secondary location.
- Secondary
Web stringInternet Endpoint - The internet routing endpoint URL for web storage in the secondary location.
- Secondary
Web stringInternet Host - The internet routing hostname with port if applicable for web storage in the secondary location.
- Secondary
Web stringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the secondary location.
- Secondary
Web stringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the secondary location.
- Table
Encryption stringKey Type - The encryption key type of the table.
- map[string]string
- A mapping of tags to assigned to the resource.
- Min
Tls stringVersion - The minimum supported TLS version for this storage account.
- Resource
Group stringName
- access
Tier String - The access tier for
BlobStorage
accounts. - account
Kind String - The Kind of account.
- account
Replication StringType - The type of replication used for this storage account.
- account
Tier String - The Tier of this storage account.
- allow
Nested BooleanItems To Be Public - Can nested items in the storage account opt into allowing public access?
- azure
Files List<GetAuthentications Account Azure Files Authentication> - A
azure_files_authentication
block as documented below. - custom
Domains List<GetAccount Custom Domain> - supports the following:
- enable
Https BooleanTraffic Only - Is traffic only allowed via HTTPS? See here for more information.
- id String
- The provider-assigned unique ID for this managed resource.
- identities
List<Get
Account Identity> - An
identity
block as documented below. - infrastructure
Encryption BooleanEnabled - Is infrastructure encryption enabled? See here for more information.
- is
Hns BooleanEnabled - 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?
- primary
Access StringKey - The primary access key for the Storage Account.
- primary
Blob StringConnection String - The connection string associated with the primary blob location
- primary
Blob StringEndpoint - The endpoint URL for blob storage in the primary location.
- primary
Blob StringHost - The hostname with port if applicable for blob storage in the primary location.
- primary
Blob StringInternet Endpoint - The internet routing endpoint URL for blob storage in the primary location.
- primary
Blob StringInternet Host - The internet routing hostname with port if applicable for blob storage in the primary location.
- primary
Blob StringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the primary location.
- primary
Blob StringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the primary location.
- primary
Connection StringString - The connection string associated with the primary location
- primary
Dfs StringEndpoint - The endpoint URL for DFS storage in the primary location.
- primary
Dfs StringHost - The hostname with port if applicable for DFS storage in the primary location.
- primary
Dfs StringInternet Endpoint - The internet routing endpoint URL for DFS storage in the primary location.
- primary
Dfs StringInternet Host - The internet routing hostname with port if applicable for DFS storage in the primary location.
- primary
Dfs StringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the primary location.
- primary
Dfs StringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the primary location.
- primary
File StringEndpoint - The endpoint URL for file storage in the primary location.
- primary
File StringHost - The hostname with port if applicable for file storage in the primary location.
- primary
File StringInternet Endpoint - The internet routing endpoint URL for file storage in the primary location.
- primary
File StringInternet Host - The internet routing hostname with port if applicable for file storage in the primary location.
- primary
File StringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the primary location.
- primary
File StringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the primary location.
- primary
Location String - The primary location of the Storage Account.
- primary
Queue StringEndpoint - The endpoint URL for queue storage in the primary location.
- primary
Queue StringHost - The hostname with port if applicable for queue storage in the primary location.
- primary
Queue StringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the primary location.
- primary
Queue StringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the primary location.
- primary
Table StringEndpoint - The endpoint URL for table storage in the primary location.
- primary
Table StringHost - The hostname with port if applicable for table storage in the primary location.
- primary
Table StringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the primary location.
- primary
Table StringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the primary location.
- primary
Web StringEndpoint - The endpoint URL for web storage in the primary location.
- primary
Web StringHost - The hostname with port if applicable for web storage in the primary location.
- primary
Web StringInternet Endpoint - The internet routing endpoint URL for web storage in the primary location.
- primary
Web StringInternet Host - The internet routing hostname with port if applicable for web storage in the primary location.
- primary
Web StringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the primary location.
- primary
Web StringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the primary location.
- queue
Encryption StringKey Type - The encryption key type of the queue.
- secondary
Access StringKey - The secondary access key for the Storage Account.
- secondary
Blob StringConnection String - The connection string associated with the secondary blob location
- secondary
Blob StringEndpoint - The endpoint URL for blob storage in the secondary location.
- secondary
Blob StringHost - The hostname with port if applicable for blob storage in the secondary location.
- secondary
Blob StringInternet Endpoint - The internet routing endpoint URL for blob storage in the secondary location.
- secondary
Blob StringInternet Host - The internet routing hostname with port if applicable for blob storage in the secondary location.
- secondary
Blob StringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the secondary location.
- secondary
Blob StringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the secondary location.
- secondary
Connection StringString - The connection string associated with the secondary location
- secondary
Dfs StringEndpoint - The endpoint URL for DFS storage in the secondary location.
- secondary
Dfs StringHost - The hostname with port if applicable for DFS storage in the secondary location.
- secondary
Dfs StringInternet Endpoint - The internet routing endpoint URL for DFS storage in the secondary location.
- secondary
Dfs StringInternet Host - The internet routing hostname with port if applicable for DFS storage in the secondary location.
- secondary
Dfs StringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the secondary location.
- secondary
Dfs StringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the secondary location.
- secondary
File StringEndpoint - The endpoint URL for file storage in the secondary location.
- secondary
File StringHost - The hostname with port if applicable for file storage in the secondary location.
- secondary
File StringInternet Endpoint - The internet routing endpoint URL for file storage in the secondary location.
- secondary
File StringInternet Host - The internet routing hostname with port if applicable for file storage in the secondary location.
- secondary
File StringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the secondary location.
- secondary
File StringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the secondary location.
- secondary
Location String - The secondary location of the Storage Account.
- secondary
Queue StringEndpoint - The endpoint URL for queue storage in the secondary location.
- secondary
Queue StringHost - The hostname with port if applicable for queue storage in the secondary location.
- secondary
Queue StringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the secondary location.
- secondary
Queue StringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the secondary location.
- secondary
Table StringEndpoint - The endpoint URL for table storage in the secondary location.
- secondary
Table StringHost - The hostname with port if applicable for table storage in the secondary location.
- secondary
Table StringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the secondary location.
- secondary
Table StringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the secondary location.
- secondary
Web StringEndpoint - The endpoint URL for web storage in the secondary location.
- secondary
Web StringHost - The hostname with port if applicable for web storage in the secondary location.
- secondary
Web StringInternet Endpoint - The internet routing endpoint URL for web storage in the secondary location.
- secondary
Web StringInternet Host - The internet routing hostname with port if applicable for web storage in the secondary location.
- secondary
Web StringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the secondary location.
- secondary
Web StringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the secondary location.
- table
Encryption StringKey Type - The encryption key type of the table.
- Map<String,String>
- A mapping of tags to assigned to the resource.
- min
Tls StringVersion - The minimum supported TLS version for this storage account.
- resource
Group StringName
- access
Tier string - The access tier for
BlobStorage
accounts. - account
Kind string - The Kind of account.
- account
Replication stringType - The type of replication used for this storage account.
- account
Tier string - The Tier of this storage account.
- allow
Nested booleanItems To Be Public - Can nested items in the storage account opt into allowing public access?
- azure
Files GetAuthentications Account Azure Files Authentication[] - A
azure_files_authentication
block as documented below. - custom
Domains GetAccount Custom Domain[] - supports the following:
- enable
Https booleanTraffic Only - Is traffic only allowed via HTTPS? See here for more information.
- id string
- The provider-assigned unique ID for this managed resource.
- identities
Get
Account Identity[] - An
identity
block as documented below. - infrastructure
Encryption booleanEnabled - Is infrastructure encryption enabled? See here for more information.
- is
Hns booleanEnabled - 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?
- primary
Access stringKey - The primary access key for the Storage Account.
- primary
Blob stringConnection String - The connection string associated with the primary blob location
- primary
Blob stringEndpoint - The endpoint URL for blob storage in the primary location.
- primary
Blob stringHost - The hostname with port if applicable for blob storage in the primary location.
- primary
Blob stringInternet Endpoint - The internet routing endpoint URL for blob storage in the primary location.
- primary
Blob stringInternet Host - The internet routing hostname with port if applicable for blob storage in the primary location.
- primary
Blob stringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the primary location.
- primary
Blob stringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the primary location.
- primary
Connection stringString - The connection string associated with the primary location
- primary
Dfs stringEndpoint - The endpoint URL for DFS storage in the primary location.
- primary
Dfs stringHost - The hostname with port if applicable for DFS storage in the primary location.
- primary
Dfs stringInternet Endpoint - The internet routing endpoint URL for DFS storage in the primary location.
- primary
Dfs stringInternet Host - The internet routing hostname with port if applicable for DFS storage in the primary location.
- primary
Dfs stringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the primary location.
- primary
Dfs stringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the primary location.
- primary
File stringEndpoint - The endpoint URL for file storage in the primary location.
- primary
File stringHost - The hostname with port if applicable for file storage in the primary location.
- primary
File stringInternet Endpoint - The internet routing endpoint URL for file storage in the primary location.
- primary
File stringInternet Host - The internet routing hostname with port if applicable for file storage in the primary location.
- primary
File stringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the primary location.
- primary
File stringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the primary location.
- primary
Location string - The primary location of the Storage Account.
- primary
Queue stringEndpoint - The endpoint URL for queue storage in the primary location.
- primary
Queue stringHost - The hostname with port if applicable for queue storage in the primary location.
- primary
Queue stringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the primary location.
- primary
Queue stringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the primary location.
- primary
Table stringEndpoint - The endpoint URL for table storage in the primary location.
- primary
Table stringHost - The hostname with port if applicable for table storage in the primary location.
- primary
Table stringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the primary location.
- primary
Table stringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the primary location.
- primary
Web stringEndpoint - The endpoint URL for web storage in the primary location.
- primary
Web stringHost - The hostname with port if applicable for web storage in the primary location.
- primary
Web stringInternet Endpoint - The internet routing endpoint URL for web storage in the primary location.
- primary
Web stringInternet Host - The internet routing hostname with port if applicable for web storage in the primary location.
- primary
Web stringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the primary location.
- primary
Web stringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the primary location.
- queue
Encryption stringKey Type - The encryption key type of the queue.
- secondary
Access stringKey - The secondary access key for the Storage Account.
- secondary
Blob stringConnection String - The connection string associated with the secondary blob location
- secondary
Blob stringEndpoint - The endpoint URL for blob storage in the secondary location.
- secondary
Blob stringHost - The hostname with port if applicable for blob storage in the secondary location.
- secondary
Blob stringInternet Endpoint - The internet routing endpoint URL for blob storage in the secondary location.
- secondary
Blob stringInternet Host - The internet routing hostname with port if applicable for blob storage in the secondary location.
- secondary
Blob stringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the secondary location.
- secondary
Blob stringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the secondary location.
- secondary
Connection stringString - The connection string associated with the secondary location
- secondary
Dfs stringEndpoint - The endpoint URL for DFS storage in the secondary location.
- secondary
Dfs stringHost - The hostname with port if applicable for DFS storage in the secondary location.
- secondary
Dfs stringInternet Endpoint - The internet routing endpoint URL for DFS storage in the secondary location.
- secondary
Dfs stringInternet Host - The internet routing hostname with port if applicable for DFS storage in the secondary location.
- secondary
Dfs stringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the secondary location.
- secondary
Dfs stringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the secondary location.
- secondary
File stringEndpoint - The endpoint URL for file storage in the secondary location.
- secondary
File stringHost - The hostname with port if applicable for file storage in the secondary location.
- secondary
File stringInternet Endpoint - The internet routing endpoint URL for file storage in the secondary location.
- secondary
File stringInternet Host - The internet routing hostname with port if applicable for file storage in the secondary location.
- secondary
File stringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the secondary location.
- secondary
File stringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the secondary location.
- secondary
Location string - The secondary location of the Storage Account.
- secondary
Queue stringEndpoint - The endpoint URL for queue storage in the secondary location.
- secondary
Queue stringHost - The hostname with port if applicable for queue storage in the secondary location.
- secondary
Queue stringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the secondary location.
- secondary
Queue stringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the secondary location.
- secondary
Table stringEndpoint - The endpoint URL for table storage in the secondary location.
- secondary
Table stringHost - The hostname with port if applicable for table storage in the secondary location.
- secondary
Table stringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the secondary location.
- secondary
Table stringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the secondary location.
- secondary
Web stringEndpoint - The endpoint URL for web storage in the secondary location.
- secondary
Web stringHost - The hostname with port if applicable for web storage in the secondary location.
- secondary
Web stringInternet Endpoint - The internet routing endpoint URL for web storage in the secondary location.
- secondary
Web stringInternet Host - The internet routing hostname with port if applicable for web storage in the secondary location.
- secondary
Web stringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the secondary location.
- secondary
Web stringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the secondary location.
- table
Encryption stringKey Type - The encryption key type of the table.
- {[key: string]: string}
- A mapping of tags to assigned to the resource.
- min
Tls stringVersion - The minimum supported TLS version for this storage account.
- resource
Group stringName
- access_
tier str - The access tier for
BlobStorage
accounts. - account_
kind str - The Kind of account.
- account_
replication_ strtype - The type of replication used for this storage account.
- account_
tier str - The Tier of this storage account.
- allow_
nested_ boolitems_ to_ be_ public - Can nested items in the storage account opt into allowing public access?
- azure_
files_ Sequence[Getauthentications Account Azure Files Authentication] - A
azure_files_authentication
block as documented below. - custom_
domains Sequence[GetAccount Custom Domain] - supports the following:
- enable_
https_ booltraffic_ only - Is traffic only allowed via HTTPS? See here for more information.
- id str
- The provider-assigned unique ID for this managed resource.
- identities
Sequence[Get
Account Identity] - An
identity
block as documented below. - infrastructure_
encryption_ boolenabled - Is infrastructure encryption enabled? See here for more information.
- is_
hns_ boolenabled - 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_ strkey - The primary access key for the Storage Account.
- primary_
blob_ strconnection_ string - The connection string associated with the primary blob location
- primary_
blob_ strendpoint - The endpoint URL for blob storage in the primary location.
- primary_
blob_ strhost - The hostname with port if applicable for blob storage in the primary location.
- primary_
blob_ strinternet_ endpoint - The internet routing endpoint URL for blob storage in the primary location.
- primary_
blob_ strinternet_ host - The internet routing hostname with port if applicable for blob storage in the primary location.
- primary_
blob_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for blob storage in the primary location.
- primary_
blob_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for blob storage in the primary location.
- primary_
connection_ strstring - The connection string associated with the primary location
- primary_
dfs_ strendpoint - The endpoint URL for DFS storage in the primary location.
- primary_
dfs_ strhost - The hostname with port if applicable for DFS storage in the primary location.
- primary_
dfs_ strinternet_ endpoint - The internet routing endpoint URL for DFS storage in the primary location.
- primary_
dfs_ strinternet_ host - The internet routing hostname with port if applicable for DFS storage in the primary location.
- primary_
dfs_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for DFS storage in the primary location.
- primary_
dfs_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for DFS storage in the primary location.
- primary_
file_ strendpoint - The endpoint URL for file storage in the primary location.
- primary_
file_ strhost - The hostname with port if applicable for file storage in the primary location.
- primary_
file_ strinternet_ endpoint - The internet routing endpoint URL for file storage in the primary location.
- primary_
file_ strinternet_ host - The internet routing hostname with port if applicable for file storage in the primary location.
- primary_
file_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for file storage in the primary location.
- primary_
file_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for file storage in the primary location.
- primary_
location str - The primary location of the Storage Account.
- primary_
queue_ strendpoint - The endpoint URL for queue storage in the primary location.
- primary_
queue_ strhost - The hostname with port if applicable for queue storage in the primary location.
- primary_
queue_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for queue storage in the primary location.
- primary_
queue_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for queue storage in the primary location.
- primary_
table_ strendpoint - The endpoint URL for table storage in the primary location.
- primary_
table_ strhost - The hostname with port if applicable for table storage in the primary location.
- primary_
table_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for table storage in the primary location.
- primary_
table_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for table storage in the primary location.
- primary_
web_ strendpoint - The endpoint URL for web storage in the primary location.
- primary_
web_ strhost - The hostname with port if applicable for web storage in the primary location.
- primary_
web_ strinternet_ endpoint - The internet routing endpoint URL for web storage in the primary location.
- primary_
web_ strinternet_ host - The internet routing hostname with port if applicable for web storage in the primary location.
- primary_
web_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for web storage in the primary location.
- primary_
web_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for web storage in the primary location.
- queue_
encryption_ strkey_ type - The encryption key type of the queue.
- secondary_
access_ strkey - The secondary access key for the Storage Account.
- secondary_
blob_ strconnection_ string - The connection string associated with the secondary blob location
- secondary_
blob_ strendpoint - The endpoint URL for blob storage in the secondary location.
- secondary_
blob_ strhost - The hostname with port if applicable for blob storage in the secondary location.
- secondary_
blob_ strinternet_ endpoint - The internet routing endpoint URL for blob storage in the secondary location.
- secondary_
blob_ strinternet_ host - The internet routing hostname with port if applicable for blob storage in the secondary location.
- secondary_
blob_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for blob storage in the secondary location.
- secondary_
blob_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for blob storage in the secondary location.
- secondary_
connection_ strstring - The connection string associated with the secondary location
- secondary_
dfs_ strendpoint - The endpoint URL for DFS storage in the secondary location.
- secondary_
dfs_ strhost - The hostname with port if applicable for DFS storage in the secondary location.
- secondary_
dfs_ strinternet_ endpoint - The internet routing endpoint URL for DFS storage in the secondary location.
- secondary_
dfs_ strinternet_ host - The internet routing hostname with port if applicable for DFS storage in the secondary location.
- secondary_
dfs_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for DFS storage in the secondary location.
- secondary_
dfs_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for DFS storage in the secondary location.
- secondary_
file_ strendpoint - The endpoint URL for file storage in the secondary location.
- secondary_
file_ strhost - The hostname with port if applicable for file storage in the secondary location.
- secondary_
file_ strinternet_ endpoint - The internet routing endpoint URL for file storage in the secondary location.
- secondary_
file_ strinternet_ host - The internet routing hostname with port if applicable for file storage in the secondary location.
- secondary_
file_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for file storage in the secondary location.
- secondary_
file_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for file storage in the secondary location.
- secondary_
location str - The secondary location of the Storage Account.
- secondary_
queue_ strendpoint - The endpoint URL for queue storage in the secondary location.
- secondary_
queue_ strhost - The hostname with port if applicable for queue storage in the secondary location.
- secondary_
queue_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for queue storage in the secondary location.
- secondary_
queue_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for queue storage in the secondary location.
- secondary_
table_ strendpoint - The endpoint URL for table storage in the secondary location.
- secondary_
table_ strhost - The hostname with port if applicable for table storage in the secondary location.
- secondary_
table_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for table storage in the secondary location.
- secondary_
table_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for table storage in the secondary location.
- secondary_
web_ strendpoint - The endpoint URL for web storage in the secondary location.
- secondary_
web_ strhost - The hostname with port if applicable for web storage in the secondary location.
- secondary_
web_ strinternet_ endpoint - The internet routing endpoint URL for web storage in the secondary location.
- secondary_
web_ strinternet_ host - The internet routing hostname with port if applicable for web storage in the secondary location.
- secondary_
web_ strmicrosoft_ endpoint - The microsoft routing endpoint URL for web storage in the secondary location.
- secondary_
web_ strmicrosoft_ host - The microsoft routing hostname with port if applicable for web storage in the secondary location.
- table_
encryption_ strkey_ type - The encryption key type of the table.
- Mapping[str, str]
- A mapping of tags to assigned to the resource.
- min_
tls_ strversion - The minimum supported TLS version for this storage account.
- resource_
group_ strname
- access
Tier String - The access tier for
BlobStorage
accounts. - account
Kind String - The Kind of account.
- account
Replication StringType - The type of replication used for this storage account.
- account
Tier String - The Tier of this storage account.
- allow
Nested BooleanItems To Be Public - Can nested items in the storage account opt into allowing public access?
- azure
Files List<Property Map>Authentications - A
azure_files_authentication
block as documented below. - custom
Domains List<Property Map> - supports the following:
- enable
Https BooleanTraffic Only - 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. - infrastructure
Encryption BooleanEnabled - Is infrastructure encryption enabled? See here for more information.
- is
Hns BooleanEnabled - 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?
- primary
Access StringKey - The primary access key for the Storage Account.
- primary
Blob StringConnection String - The connection string associated with the primary blob location
- primary
Blob StringEndpoint - The endpoint URL for blob storage in the primary location.
- primary
Blob StringHost - The hostname with port if applicable for blob storage in the primary location.
- primary
Blob StringInternet Endpoint - The internet routing endpoint URL for blob storage in the primary location.
- primary
Blob StringInternet Host - The internet routing hostname with port if applicable for blob storage in the primary location.
- primary
Blob StringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the primary location.
- primary
Blob StringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the primary location.
- primary
Connection StringString - The connection string associated with the primary location
- primary
Dfs StringEndpoint - The endpoint URL for DFS storage in the primary location.
- primary
Dfs StringHost - The hostname with port if applicable for DFS storage in the primary location.
- primary
Dfs StringInternet Endpoint - The internet routing endpoint URL for DFS storage in the primary location.
- primary
Dfs StringInternet Host - The internet routing hostname with port if applicable for DFS storage in the primary location.
- primary
Dfs StringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the primary location.
- primary
Dfs StringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the primary location.
- primary
File StringEndpoint - The endpoint URL for file storage in the primary location.
- primary
File StringHost - The hostname with port if applicable for file storage in the primary location.
- primary
File StringInternet Endpoint - The internet routing endpoint URL for file storage in the primary location.
- primary
File StringInternet Host - The internet routing hostname with port if applicable for file storage in the primary location.
- primary
File StringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the primary location.
- primary
File StringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the primary location.
- primary
Location String - The primary location of the Storage Account.
- primary
Queue StringEndpoint - The endpoint URL for queue storage in the primary location.
- primary
Queue StringHost - The hostname with port if applicable for queue storage in the primary location.
- primary
Queue StringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the primary location.
- primary
Queue StringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the primary location.
- primary
Table StringEndpoint - The endpoint URL for table storage in the primary location.
- primary
Table StringHost - The hostname with port if applicable for table storage in the primary location.
- primary
Table StringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the primary location.
- primary
Table StringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the primary location.
- primary
Web StringEndpoint - The endpoint URL for web storage in the primary location.
- primary
Web StringHost - The hostname with port if applicable for web storage in the primary location.
- primary
Web StringInternet Endpoint - The internet routing endpoint URL for web storage in the primary location.
- primary
Web StringInternet Host - The internet routing hostname with port if applicable for web storage in the primary location.
- primary
Web StringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the primary location.
- primary
Web StringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the primary location.
- queue
Encryption StringKey Type - The encryption key type of the queue.
- secondary
Access StringKey - The secondary access key for the Storage Account.
- secondary
Blob StringConnection String - The connection string associated with the secondary blob location
- secondary
Blob StringEndpoint - The endpoint URL for blob storage in the secondary location.
- secondary
Blob StringHost - The hostname with port if applicable for blob storage in the secondary location.
- secondary
Blob StringInternet Endpoint - The internet routing endpoint URL for blob storage in the secondary location.
- secondary
Blob StringInternet Host - The internet routing hostname with port if applicable for blob storage in the secondary location.
- secondary
Blob StringMicrosoft Endpoint - The microsoft routing endpoint URL for blob storage in the secondary location.
- secondary
Blob StringMicrosoft Host - The microsoft routing hostname with port if applicable for blob storage in the secondary location.
- secondary
Connection StringString - The connection string associated with the secondary location
- secondary
Dfs StringEndpoint - The endpoint URL for DFS storage in the secondary location.
- secondary
Dfs StringHost - The hostname with port if applicable for DFS storage in the secondary location.
- secondary
Dfs StringInternet Endpoint - The internet routing endpoint URL for DFS storage in the secondary location.
- secondary
Dfs StringInternet Host - The internet routing hostname with port if applicable for DFS storage in the secondary location.
- secondary
Dfs StringMicrosoft Endpoint - The microsoft routing endpoint URL for DFS storage in the secondary location.
- secondary
Dfs StringMicrosoft Host - The microsoft routing hostname with port if applicable for DFS storage in the secondary location.
- secondary
File StringEndpoint - The endpoint URL for file storage in the secondary location.
- secondary
File StringHost - The hostname with port if applicable for file storage in the secondary location.
- secondary
File StringInternet Endpoint - The internet routing endpoint URL for file storage in the secondary location.
- secondary
File StringInternet Host - The internet routing hostname with port if applicable for file storage in the secondary location.
- secondary
File StringMicrosoft Endpoint - The microsoft routing endpoint URL for file storage in the secondary location.
- secondary
File StringMicrosoft Host - The microsoft routing hostname with port if applicable for file storage in the secondary location.
- secondary
Location String - The secondary location of the Storage Account.
- secondary
Queue StringEndpoint - The endpoint URL for queue storage in the secondary location.
- secondary
Queue StringHost - The hostname with port if applicable for queue storage in the secondary location.
- secondary
Queue StringMicrosoft Endpoint - The microsoft routing endpoint URL for queue storage in the secondary location.
- secondary
Queue StringMicrosoft Host - The microsoft routing hostname with port if applicable for queue storage in the secondary location.
- secondary
Table StringEndpoint - The endpoint URL for table storage in the secondary location.
- secondary
Table StringHost - The hostname with port if applicable for table storage in the secondary location.
- secondary
Table StringMicrosoft Endpoint - The microsoft routing endpoint URL for table storage in the secondary location.
- secondary
Table StringMicrosoft Host - The microsoft routing hostname with port if applicable for table storage in the secondary location.
- secondary
Web StringEndpoint - The endpoint URL for web storage in the secondary location.
- secondary
Web StringHost - The hostname with port if applicable for web storage in the secondary location.
- secondary
Web StringInternet Endpoint - The internet routing endpoint URL for web storage in the secondary location.
- secondary
Web StringInternet Host - The internet routing hostname with port if applicable for web storage in the secondary location.
- secondary
Web StringMicrosoft Endpoint - The microsoft routing endpoint URL for web storage in the secondary location.
- secondary
Web StringMicrosoft Host - The microsoft routing hostname with port if applicable for web storage in the secondary location.
- table
Encryption StringKey Type - The encryption key type of the table.
- Map<String>
- A mapping of tags to assigned to the resource.
- min
Tls StringVersion - The minimum supported TLS version for this storage account.
- resource
Group StringName
Supporting Types
GetAccountAzureFilesAuthentication
- Active
Directories List<GetAccount Azure Files Authentication Active Directory> - An
active_directory
block as documented below. - Directory
Type string - The directory service used for this Storage Account.
- Active
Directories []GetAccount Azure Files Authentication Active Directory - An
active_directory
block as documented below. - Directory
Type string - The directory service used for this Storage Account.
- active
Directories List<GetAccount Azure Files Authentication Active Directory> - An
active_directory
block as documented below. - directory
Type String - The directory service used for this Storage Account.
- active
Directories GetAccount Azure Files Authentication Active Directory[] - An
active_directory
block as documented below. - directory
Type string - The directory service used for this Storage Account.
- active_
directories Sequence[GetAccount Azure Files Authentication Active Directory] - An
active_directory
block as documented below. - directory_
type str - The directory service used for this Storage Account.
- active
Directories List<Property Map> - An
active_directory
block as documented below. - directory
Type String - The directory service used for this Storage Account.
GetAccountAzureFilesAuthenticationActiveDirectory
- Domain
Guid string - The domain GUID.
- Domain
Name string - The primary domain that the AD DNS server is authoritative for.
- Domain
Sid string - The domain security identifier.
- Forest
Name string - The name of the Active Directory forest.
- Netbios
Domain stringName - The NetBIOS domain name.
- Storage
Sid string - The security identifier for Azure Storage.
- Domain
Guid string - The domain GUID.
- Domain
Name string - The primary domain that the AD DNS server is authoritative for.
- Domain
Sid string - The domain security identifier.
- Forest
Name string - The name of the Active Directory forest.
- Netbios
Domain stringName - The NetBIOS domain name.
- Storage
Sid string - The security identifier for Azure Storage.
- domain
Guid String - The domain GUID.
- domain
Name String - The primary domain that the AD DNS server is authoritative for.
- domain
Sid String - The domain security identifier.
- forest
Name String - The name of the Active Directory forest.
- netbios
Domain StringName - The NetBIOS domain name.
- storage
Sid String - The security identifier for Azure Storage.
- domain
Guid string - The domain GUID.
- domain
Name string - The primary domain that the AD DNS server is authoritative for.
- domain
Sid string - The domain security identifier.
- forest
Name string - The name of the Active Directory forest.
- netbios
Domain stringName - The NetBIOS domain name.
- storage
Sid 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_ strname - The NetBIOS domain name.
- storage_
sid str - The security identifier for Azure Storage.
- domain
Guid String - The domain GUID.
- domain
Name String - The primary domain that the AD DNS server is authoritative for.
- domain
Sid String - The domain security identifier.
- forest
Name String - The name of the Active Directory forest.
- netbios
Domain StringName - The NetBIOS domain name.
- storage
Sid 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
- Identity
Ids List<string> - A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.
- Principal
Id string - The Principal ID for the Service Principal associated with the Identity of this Storage Account.
- Tenant
Id 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 []string - A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.
- Principal
Id string - The Principal ID for the Service Principal associated with the Identity of this Storage Account.
- Tenant
Id 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 List<String> - A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.
- principal
Id String - The Principal ID for the Service Principal associated with the Identity of this Storage Account.
- tenant
Id 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 string[] - A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.
- principal
Id string - The Principal ID for the Service Principal associated with the Identity of this Storage Account.
- tenant
Id 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
- identity
Ids List<String> - A list of User Assigned Managed Identity IDs assigned with the Identity of this Storage Account.
- principal
Id String - The Principal ID for the Service Principal associated with the Identity of this Storage Account.
- tenant
Id 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.