1. Packages
  2. Azure Classic
  3. API Docs
  4. mediaservices
  5. Account

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

azure.mediaservices.Account

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi
    Deprecated: azure.mediaservices.Account has been deprecated in favor of azure.media.ServiceAccount

    Manages a Media Services Account.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "media-resources",
        location: "West Europe",
    });
    const exampleAccount = new azure.storage.Account("example", {
        name: "examplestoracc",
        resourceGroupName: example.name,
        location: example.location,
        accountTier: "Standard",
        accountReplicationType: "GRS",
    });
    const exampleServiceAccount = new azure.media.ServiceAccount("example", {
        name: "examplemediaacc",
        location: example.location,
        resourceGroupName: example.name,
        storageAccounts: [{
            id: exampleAccount.id,
            isPrimary: true,
        }],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="media-resources",
        location="West Europe")
    example_account = azure.storage.Account("example",
        name="examplestoracc",
        resource_group_name=example.name,
        location=example.location,
        account_tier="Standard",
        account_replication_type="GRS")
    example_service_account = azure.media.ServiceAccount("example",
        name="examplemediaacc",
        location=example.location,
        resource_group_name=example.name,
        storage_accounts=[azure.media.ServiceAccountStorageAccountArgs(
            id=example_account.id,
            is_primary=True,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/media"
    	"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 := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("media-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
    			Name:                   pulumi.String("examplestoracc"),
    			ResourceGroupName:      example.Name,
    			Location:               example.Location,
    			AccountTier:            pulumi.String("Standard"),
    			AccountReplicationType: pulumi.String("GRS"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = media.NewServiceAccount(ctx, "example", &media.ServiceAccountArgs{
    			Name:              pulumi.String("examplemediaacc"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			StorageAccounts: media.ServiceAccountStorageAccountArray{
    				&media.ServiceAccountStorageAccountArgs{
    					Id:        exampleAccount.ID(),
    					IsPrimary: pulumi.Bool(true),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "media-resources",
            Location = "West Europe",
        });
    
        var exampleAccount = new Azure.Storage.Account("example", new()
        {
            Name = "examplestoracc",
            ResourceGroupName = example.Name,
            Location = example.Location,
            AccountTier = "Standard",
            AccountReplicationType = "GRS",
        });
    
        var exampleServiceAccount = new Azure.Media.ServiceAccount("example", new()
        {
            Name = "examplemediaacc",
            Location = example.Location,
            ResourceGroupName = example.Name,
            StorageAccounts = new[]
            {
                new Azure.Media.Inputs.ServiceAccountStorageAccountArgs
                {
                    Id = exampleAccount.Id,
                    IsPrimary = true,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.storage.Account;
    import com.pulumi.azure.storage.AccountArgs;
    import com.pulumi.azure.media.ServiceAccount;
    import com.pulumi.azure.media.ServiceAccountArgs;
    import com.pulumi.azure.media.inputs.ServiceAccountStorageAccountArgs;
    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) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("media-resources")
                .location("West Europe")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
                .name("examplestoracc")
                .resourceGroupName(example.name())
                .location(example.location())
                .accountTier("Standard")
                .accountReplicationType("GRS")
                .build());
    
            var exampleServiceAccount = new ServiceAccount("exampleServiceAccount", ServiceAccountArgs.builder()        
                .name("examplemediaacc")
                .location(example.location())
                .resourceGroupName(example.name())
                .storageAccounts(ServiceAccountStorageAccountArgs.builder()
                    .id(exampleAccount.id())
                    .isPrimary(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: media-resources
          location: West Europe
      exampleAccount:
        type: azure:storage:Account
        name: example
        properties:
          name: examplestoracc
          resourceGroupName: ${example.name}
          location: ${example.location}
          accountTier: Standard
          accountReplicationType: GRS
      exampleServiceAccount:
        type: azure:media:ServiceAccount
        name: example
        properties:
          name: examplemediaacc
          location: ${example.location}
          resourceGroupName: ${example.name}
          storageAccounts:
            - id: ${exampleAccount.id}
              isPrimary: true
    

    Create Account Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
    @overload
    def Account(resource_name: str,
                args: AccountArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Account(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                encryption: Optional[AccountEncryptionArgs] = None,
                identity: Optional[AccountIdentityArgs] = None,
                key_delivery_access_control: Optional[AccountKeyDeliveryAccessControlArgs] = None,
                location: Optional[str] = None,
                name: Optional[str] = None,
                public_network_access_enabled: Optional[bool] = None,
                resource_group_name: Optional[str] = None,
                storage_accounts: Optional[Sequence[AccountStorageAccountArgs]] = None,
                storage_authentication_type: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
    public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
    public Account(String name, AccountArgs args)
    public Account(String name, AccountArgs args, CustomResourceOptions options)
    
    type: azure:mediaservices:Account
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    

    Account Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Account resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    StorageAccounts List<AccountStorageAccount>
    One or more storage_account blocks as defined below.
    Encryption AccountEncryption
    An encryption block as defined below.
    Identity AccountIdentity
    An identity block as defined below.
    KeyDeliveryAccessControl AccountKeyDeliveryAccessControl
    A key_delivery_access_control block as defined below.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for this server. Defaults to true.
    StorageAuthenticationType string
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    Tags Dictionary<string, string>
    A mapping of tags assigned to the resource.
    ResourceGroupName string
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    StorageAccounts []AccountStorageAccountArgs
    One or more storage_account blocks as defined below.
    Encryption AccountEncryptionArgs
    An encryption block as defined below.
    Identity AccountIdentityArgs
    An identity block as defined below.
    KeyDeliveryAccessControl AccountKeyDeliveryAccessControlArgs
    A key_delivery_access_control block as defined below.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for this server. Defaults to true.
    StorageAuthenticationType string
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    Tags map[string]string
    A mapping of tags assigned to the resource.
    resourceGroupName String
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storageAccounts List<AccountStorageAccount>
    One or more storage_account blocks as defined below.
    encryption AccountEncryption
    An encryption block as defined below.
    identity AccountIdentity
    An identity block as defined below.
    keyDeliveryAccessControl AccountKeyDeliveryAccessControl
    A key_delivery_access_control block as defined below.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for this server. Defaults to true.
    storageAuthenticationType String
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags Map<String,String>
    A mapping of tags assigned to the resource.
    resourceGroupName string
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storageAccounts AccountStorageAccount[]
    One or more storage_account blocks as defined below.
    encryption AccountEncryption
    An encryption block as defined below.
    identity AccountIdentity
    An identity block as defined below.
    keyDeliveryAccessControl AccountKeyDeliveryAccessControl
    A key_delivery_access_control block as defined below.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    publicNetworkAccessEnabled boolean
    Whether public network access is allowed for this server. Defaults to true.
    storageAuthenticationType string
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags {[key: string]: string}
    A mapping of tags assigned to the resource.
    resource_group_name str
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storage_accounts Sequence[AccountStorageAccountArgs]
    One or more storage_account blocks as defined below.
    encryption AccountEncryptionArgs
    An encryption block as defined below.
    identity AccountIdentityArgs
    An identity block as defined below.
    key_delivery_access_control AccountKeyDeliveryAccessControlArgs
    A key_delivery_access_control block as defined below.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    public_network_access_enabled bool
    Whether public network access is allowed for this server. Defaults to true.
    storage_authentication_type str
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags Mapping[str, str]
    A mapping of tags assigned to the resource.
    resourceGroupName String
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storageAccounts List<Property Map>
    One or more storage_account blocks as defined below.
    encryption Property Map
    An encryption block as defined below.
    identity Property Map
    An identity block as defined below.
    keyDeliveryAccessControl Property Map
    A key_delivery_access_control block as defined below.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for this server. Defaults to true.
    storageAuthenticationType String
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags Map<String>
    A mapping of tags assigned to the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Account Resource

    Get an existing Account resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AccountState, opts?: CustomResourceOptions): Account
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            encryption: Optional[AccountEncryptionArgs] = None,
            identity: Optional[AccountIdentityArgs] = None,
            key_delivery_access_control: Optional[AccountKeyDeliveryAccessControlArgs] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            public_network_access_enabled: Optional[bool] = None,
            resource_group_name: Optional[str] = None,
            storage_accounts: Optional[Sequence[AccountStorageAccountArgs]] = None,
            storage_authentication_type: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None) -> Account
    func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
    public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
    public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Encryption AccountEncryption
    An encryption block as defined below.
    Identity AccountIdentity
    An identity block as defined below.
    KeyDeliveryAccessControl AccountKeyDeliveryAccessControl
    A key_delivery_access_control block as defined below.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for this server. Defaults to true.
    ResourceGroupName string
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    StorageAccounts List<AccountStorageAccount>
    One or more storage_account blocks as defined below.
    StorageAuthenticationType string
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    Tags Dictionary<string, string>
    A mapping of tags assigned to the resource.
    Encryption AccountEncryptionArgs
    An encryption block as defined below.
    Identity AccountIdentityArgs
    An identity block as defined below.
    KeyDeliveryAccessControl AccountKeyDeliveryAccessControlArgs
    A key_delivery_access_control block as defined below.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    PublicNetworkAccessEnabled bool
    Whether public network access is allowed for this server. Defaults to true.
    ResourceGroupName string
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    StorageAccounts []AccountStorageAccountArgs
    One or more storage_account blocks as defined below.
    StorageAuthenticationType string
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    Tags map[string]string
    A mapping of tags assigned to the resource.
    encryption AccountEncryption
    An encryption block as defined below.
    identity AccountIdentity
    An identity block as defined below.
    keyDeliveryAccessControl AccountKeyDeliveryAccessControl
    A key_delivery_access_control block as defined below.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for this server. Defaults to true.
    resourceGroupName String
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storageAccounts List<AccountStorageAccount>
    One or more storage_account blocks as defined below.
    storageAuthenticationType String
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags Map<String,String>
    A mapping of tags assigned to the resource.
    encryption AccountEncryption
    An encryption block as defined below.
    identity AccountIdentity
    An identity block as defined below.
    keyDeliveryAccessControl AccountKeyDeliveryAccessControl
    A key_delivery_access_control block as defined below.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    publicNetworkAccessEnabled boolean
    Whether public network access is allowed for this server. Defaults to true.
    resourceGroupName string
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storageAccounts AccountStorageAccount[]
    One or more storage_account blocks as defined below.
    storageAuthenticationType string
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags {[key: string]: string}
    A mapping of tags assigned to the resource.
    encryption AccountEncryptionArgs
    An encryption block as defined below.
    identity AccountIdentityArgs
    An identity block as defined below.
    key_delivery_access_control AccountKeyDeliveryAccessControlArgs
    A key_delivery_access_control block as defined below.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    public_network_access_enabled bool
    Whether public network access is allowed for this server. Defaults to true.
    resource_group_name str
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storage_accounts Sequence[AccountStorageAccountArgs]
    One or more storage_account blocks as defined below.
    storage_authentication_type str
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags Mapping[str, str]
    A mapping of tags assigned to the resource.
    encryption Property Map
    An encryption block as defined below.
    identity Property Map
    An identity block as defined below.
    keyDeliveryAccessControl Property Map
    A key_delivery_access_control block as defined below.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Media Services Account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created.
    publicNetworkAccessEnabled Boolean
    Whether public network access is allowed for this server. Defaults to true.
    resourceGroupName String
    The name of the resource group in which to create the Media Services Account. Changing this forces a new resource to be created.
    storageAccounts List<Property Map>
    One or more storage_account blocks as defined below.
    storageAuthenticationType String
    Specifies the storage authentication type. Possible value is ManagedIdentity or System.
    tags Map<String>
    A mapping of tags assigned to the resource.

    Supporting Types

    AccountEncryption, AccountEncryptionArgs

    CurrentKeyIdentifier string
    The current key used to encrypt the Media Services Account, including the key version.
    KeyVaultKeyIdentifier string
    Specifies the URI of the Key Vault Key used to encrypt data. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    ManagedIdentity AccountEncryptionManagedIdentity
    A managed_identity block as defined below.
    Type string
    Specifies the type of key used to encrypt the account data. Possible values are SystemKey and CustomerKey. Defaults to SystemKey.
    CurrentKeyIdentifier string
    The current key used to encrypt the Media Services Account, including the key version.
    KeyVaultKeyIdentifier string
    Specifies the URI of the Key Vault Key used to encrypt data. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    ManagedIdentity AccountEncryptionManagedIdentity
    A managed_identity block as defined below.
    Type string
    Specifies the type of key used to encrypt the account data. Possible values are SystemKey and CustomerKey. Defaults to SystemKey.
    currentKeyIdentifier String
    The current key used to encrypt the Media Services Account, including the key version.
    keyVaultKeyIdentifier String
    Specifies the URI of the Key Vault Key used to encrypt data. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    managedIdentity AccountEncryptionManagedIdentity
    A managed_identity block as defined below.
    type String
    Specifies the type of key used to encrypt the account data. Possible values are SystemKey and CustomerKey. Defaults to SystemKey.
    currentKeyIdentifier string
    The current key used to encrypt the Media Services Account, including the key version.
    keyVaultKeyIdentifier string
    Specifies the URI of the Key Vault Key used to encrypt data. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    managedIdentity AccountEncryptionManagedIdentity
    A managed_identity block as defined below.
    type string
    Specifies the type of key used to encrypt the account data. Possible values are SystemKey and CustomerKey. Defaults to SystemKey.
    current_key_identifier str
    The current key used to encrypt the Media Services Account, including the key version.
    key_vault_key_identifier str
    Specifies the URI of the Key Vault Key used to encrypt data. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    managed_identity AccountEncryptionManagedIdentity
    A managed_identity block as defined below.
    type str
    Specifies the type of key used to encrypt the account data. Possible values are SystemKey and CustomerKey. Defaults to SystemKey.
    currentKeyIdentifier String
    The current key used to encrypt the Media Services Account, including the key version.
    keyVaultKeyIdentifier String
    Specifies the URI of the Key Vault Key used to encrypt data. The key may either be versioned (for example https://vault/keys/mykey/version1) or reference a key without a version (for example https://vault/keys/mykey).
    managedIdentity Property Map
    A managed_identity block as defined below.
    type String
    Specifies the type of key used to encrypt the account data. Possible values are SystemKey and CustomerKey. Defaults to SystemKey.

    AccountEncryptionManagedIdentity, AccountEncryptionManagedIdentityArgs

    UseSystemAssignedIdentity bool
    Whether to use System Assigned Identity. Possible Values are true and false.
    UserAssignedIdentityId string
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    UseSystemAssignedIdentity bool
    Whether to use System Assigned Identity. Possible Values are true and false.
    UserAssignedIdentityId string
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    useSystemAssignedIdentity Boolean
    Whether to use System Assigned Identity. Possible Values are true and false.
    userAssignedIdentityId String
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    useSystemAssignedIdentity boolean
    Whether to use System Assigned Identity. Possible Values are true and false.
    userAssignedIdentityId string
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    use_system_assigned_identity bool
    Whether to use System Assigned Identity. Possible Values are true and false.
    user_assigned_identity_id str
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    useSystemAssignedIdentity Boolean
    Whether to use System Assigned Identity. Possible Values are true and false.
    userAssignedIdentityId String
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false

    AccountIdentity, AccountIdentityArgs

    Type string
    Specifies the type of Managed Service Identity that should be configured on this Media Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    IdentityIds List<string>
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
    PrincipalId string
    The Principal ID associated with this Managed Service Identity.
    TenantId string
    The Tenant ID associated with this Managed Service Identity.
    Type string
    Specifies the type of Managed Service Identity that should be configured on this Media Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    IdentityIds []string
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
    PrincipalId string
    The Principal ID associated with this Managed Service Identity.
    TenantId string
    The Tenant ID associated with this Managed Service Identity.
    type String
    Specifies the type of Managed Service Identity that should be configured on this Media Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identityIds List<String>
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
    principalId String
    The Principal ID associated with this Managed Service Identity.
    tenantId String
    The Tenant ID associated with this Managed Service Identity.
    type string
    Specifies the type of Managed Service Identity that should be configured on this Media Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identityIds string[]
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
    principalId string
    The Principal ID associated with this Managed Service Identity.
    tenantId string
    The Tenant ID associated with this Managed Service Identity.
    type str
    Specifies the type of Managed Service Identity that should be configured on this Media Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identity_ids Sequence[str]
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
    principal_id str
    The Principal ID associated with this Managed Service Identity.
    tenant_id str
    The Tenant ID associated with this Managed Service Identity.
    type String
    Specifies the type of Managed Service Identity that should be configured on this Media Services Account. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).
    identityIds List<String>
    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
    principalId String
    The Principal ID associated with this Managed Service Identity.
    tenantId String
    The Tenant ID associated with this Managed Service Identity.

    AccountKeyDeliveryAccessControl, AccountKeyDeliveryAccessControlArgs

    DefaultAction string
    The Default Action to use when no rules match from ip_allow_list. Possible values are Allow and Deny.
    IpAllowLists List<string>
    One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
    DefaultAction string
    The Default Action to use when no rules match from ip_allow_list. Possible values are Allow and Deny.
    IpAllowLists []string
    One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
    defaultAction String
    The Default Action to use when no rules match from ip_allow_list. Possible values are Allow and Deny.
    ipAllowLists List<String>
    One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
    defaultAction string
    The Default Action to use when no rules match from ip_allow_list. Possible values are Allow and Deny.
    ipAllowLists string[]
    One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
    default_action str
    The Default Action to use when no rules match from ip_allow_list. Possible values are Allow and Deny.
    ip_allow_lists Sequence[str]
    One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
    defaultAction String
    The Default Action to use when no rules match from ip_allow_list. Possible values are Allow and Deny.
    ipAllowLists List<String>
    One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.

    AccountStorageAccount, AccountStorageAccountArgs

    Id string
    Specifies the ID of the Storage Account that will be associated with the Media Services instance.
    IsPrimary bool

    Specifies whether the storage account should be the primary account or not. Defaults to false.

    NOTE: Whilst multiple storage_account blocks can be specified - one of them must be set to the primary

    ManagedIdentity AccountStorageAccountManagedIdentity
    A managed_identity block as defined below.
    Id string
    Specifies the ID of the Storage Account that will be associated with the Media Services instance.
    IsPrimary bool

    Specifies whether the storage account should be the primary account or not. Defaults to false.

    NOTE: Whilst multiple storage_account blocks can be specified - one of them must be set to the primary

    ManagedIdentity AccountStorageAccountManagedIdentity
    A managed_identity block as defined below.
    id String
    Specifies the ID of the Storage Account that will be associated with the Media Services instance.
    isPrimary Boolean

    Specifies whether the storage account should be the primary account or not. Defaults to false.

    NOTE: Whilst multiple storage_account blocks can be specified - one of them must be set to the primary

    managedIdentity AccountStorageAccountManagedIdentity
    A managed_identity block as defined below.
    id string
    Specifies the ID of the Storage Account that will be associated with the Media Services instance.
    isPrimary boolean

    Specifies whether the storage account should be the primary account or not. Defaults to false.

    NOTE: Whilst multiple storage_account blocks can be specified - one of them must be set to the primary

    managedIdentity AccountStorageAccountManagedIdentity
    A managed_identity block as defined below.
    id str
    Specifies the ID of the Storage Account that will be associated with the Media Services instance.
    is_primary bool

    Specifies whether the storage account should be the primary account or not. Defaults to false.

    NOTE: Whilst multiple storage_account blocks can be specified - one of them must be set to the primary

    managed_identity AccountStorageAccountManagedIdentity
    A managed_identity block as defined below.
    id String
    Specifies the ID of the Storage Account that will be associated with the Media Services instance.
    isPrimary Boolean

    Specifies whether the storage account should be the primary account or not. Defaults to false.

    NOTE: Whilst multiple storage_account blocks can be specified - one of them must be set to the primary

    managedIdentity Property Map
    A managed_identity block as defined below.

    AccountStorageAccountManagedIdentity, AccountStorageAccountManagedIdentityArgs

    UseSystemAssignedIdentity bool
    Whether to use System Assigned Identity. Possible Values are true and false.
    UserAssignedIdentityId string
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    UseSystemAssignedIdentity bool
    Whether to use System Assigned Identity. Possible Values are true and false.
    UserAssignedIdentityId string
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    useSystemAssignedIdentity Boolean
    Whether to use System Assigned Identity. Possible Values are true and false.
    userAssignedIdentityId String
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    useSystemAssignedIdentity boolean
    Whether to use System Assigned Identity. Possible Values are true and false.
    userAssignedIdentityId string
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    use_system_assigned_identity bool
    Whether to use System Assigned Identity. Possible Values are true and false.
    user_assigned_identity_id str
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false
    useSystemAssignedIdentity Boolean
    Whether to use System Assigned Identity. Possible Values are true and false.
    userAssignedIdentityId String
    The ID of the User Assigned Identity. This value can only be set when use_system_assigned_identity is false

    Import

    Media Services Accounts can be imported using the resource id, e.g.

    $ pulumi import azure:mediaservices/account:Account account /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Media/mediaServices/account1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi