We recommend using Azure Native.
azure.media.ServiceAccount
Explore with Pulumi AI
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 ServiceAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceAccount(name: string, args: ServiceAccountArgs, opts?: CustomResourceOptions);
@overload
def ServiceAccount(resource_name: str,
args: ServiceAccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceAccount(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
storage_accounts: Optional[Sequence[ServiceAccountStorageAccountArgs]] = None,
encryption: Optional[ServiceAccountEncryptionArgs] = None,
identity: Optional[ServiceAccountIdentityArgs] = None,
key_delivery_access_control: Optional[ServiceAccountKeyDeliveryAccessControlArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
public_network_access_enabled: Optional[bool] = None,
storage_authentication_type: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewServiceAccount(ctx *Context, name string, args ServiceAccountArgs, opts ...ResourceOption) (*ServiceAccount, error)
public ServiceAccount(string name, ServiceAccountArgs args, CustomResourceOptions? opts = null)
public ServiceAccount(String name, ServiceAccountArgs args)
public ServiceAccount(String name, ServiceAccountArgs args, CustomResourceOptions options)
type: azure:media:ServiceAccount
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 ServiceAccountArgs
- 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 ServiceAccountArgs
- 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 ServiceAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceAccountArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serviceAccountResource = new Azure.Media.ServiceAccount("serviceAccountResource", new()
{
ResourceGroupName = "string",
StorageAccounts = new[]
{
new Azure.Media.Inputs.ServiceAccountStorageAccountArgs
{
Id = "string",
IsPrimary = false,
ManagedIdentity = new Azure.Media.Inputs.ServiceAccountStorageAccountManagedIdentityArgs
{
UseSystemAssignedIdentity = false,
UserAssignedIdentityId = "string",
},
},
},
Encryption = new Azure.Media.Inputs.ServiceAccountEncryptionArgs
{
CurrentKeyIdentifier = "string",
KeyVaultKeyIdentifier = "string",
ManagedIdentity = new Azure.Media.Inputs.ServiceAccountEncryptionManagedIdentityArgs
{
UseSystemAssignedIdentity = false,
UserAssignedIdentityId = "string",
},
Type = "string",
},
Identity = new Azure.Media.Inputs.ServiceAccountIdentityArgs
{
Type = "string",
IdentityIds = new[]
{
"string",
},
PrincipalId = "string",
TenantId = "string",
},
KeyDeliveryAccessControl = new Azure.Media.Inputs.ServiceAccountKeyDeliveryAccessControlArgs
{
DefaultAction = "string",
IpAllowLists = new[]
{
"string",
},
},
Location = "string",
Name = "string",
PublicNetworkAccessEnabled = false,
StorageAuthenticationType = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := media.NewServiceAccount(ctx, "serviceAccountResource", &media.ServiceAccountArgs{
ResourceGroupName: pulumi.String("string"),
StorageAccounts: media.ServiceAccountStorageAccountArray{
&media.ServiceAccountStorageAccountArgs{
Id: pulumi.String("string"),
IsPrimary: pulumi.Bool(false),
ManagedIdentity: &media.ServiceAccountStorageAccountManagedIdentityArgs{
UseSystemAssignedIdentity: pulumi.Bool(false),
UserAssignedIdentityId: pulumi.String("string"),
},
},
},
Encryption: &media.ServiceAccountEncryptionArgs{
CurrentKeyIdentifier: pulumi.String("string"),
KeyVaultKeyIdentifier: pulumi.String("string"),
ManagedIdentity: &media.ServiceAccountEncryptionManagedIdentityArgs{
UseSystemAssignedIdentity: pulumi.Bool(false),
UserAssignedIdentityId: pulumi.String("string"),
},
Type: pulumi.String("string"),
},
Identity: &media.ServiceAccountIdentityArgs{
Type: pulumi.String("string"),
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
KeyDeliveryAccessControl: &media.ServiceAccountKeyDeliveryAccessControlArgs{
DefaultAction: pulumi.String("string"),
IpAllowLists: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
PublicNetworkAccessEnabled: pulumi.Bool(false),
StorageAuthenticationType: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var serviceAccountResource = new ServiceAccount("serviceAccountResource", ServiceAccountArgs.builder()
.resourceGroupName("string")
.storageAccounts(ServiceAccountStorageAccountArgs.builder()
.id("string")
.isPrimary(false)
.managedIdentity(ServiceAccountStorageAccountManagedIdentityArgs.builder()
.useSystemAssignedIdentity(false)
.userAssignedIdentityId("string")
.build())
.build())
.encryption(ServiceAccountEncryptionArgs.builder()
.currentKeyIdentifier("string")
.keyVaultKeyIdentifier("string")
.managedIdentity(ServiceAccountEncryptionManagedIdentityArgs.builder()
.useSystemAssignedIdentity(false)
.userAssignedIdentityId("string")
.build())
.type("string")
.build())
.identity(ServiceAccountIdentityArgs.builder()
.type("string")
.identityIds("string")
.principalId("string")
.tenantId("string")
.build())
.keyDeliveryAccessControl(ServiceAccountKeyDeliveryAccessControlArgs.builder()
.defaultAction("string")
.ipAllowLists("string")
.build())
.location("string")
.name("string")
.publicNetworkAccessEnabled(false)
.storageAuthenticationType("string")
.tags(Map.of("string", "string"))
.build());
service_account_resource = azure.media.ServiceAccount("serviceAccountResource",
resource_group_name="string",
storage_accounts=[azure.media.ServiceAccountStorageAccountArgs(
id="string",
is_primary=False,
managed_identity=azure.media.ServiceAccountStorageAccountManagedIdentityArgs(
use_system_assigned_identity=False,
user_assigned_identity_id="string",
),
)],
encryption=azure.media.ServiceAccountEncryptionArgs(
current_key_identifier="string",
key_vault_key_identifier="string",
managed_identity=azure.media.ServiceAccountEncryptionManagedIdentityArgs(
use_system_assigned_identity=False,
user_assigned_identity_id="string",
),
type="string",
),
identity=azure.media.ServiceAccountIdentityArgs(
type="string",
identity_ids=["string"],
principal_id="string",
tenant_id="string",
),
key_delivery_access_control=azure.media.ServiceAccountKeyDeliveryAccessControlArgs(
default_action="string",
ip_allow_lists=["string"],
),
location="string",
name="string",
public_network_access_enabled=False,
storage_authentication_type="string",
tags={
"string": "string",
})
const serviceAccountResource = new azure.media.ServiceAccount("serviceAccountResource", {
resourceGroupName: "string",
storageAccounts: [{
id: "string",
isPrimary: false,
managedIdentity: {
useSystemAssignedIdentity: false,
userAssignedIdentityId: "string",
},
}],
encryption: {
currentKeyIdentifier: "string",
keyVaultKeyIdentifier: "string",
managedIdentity: {
useSystemAssignedIdentity: false,
userAssignedIdentityId: "string",
},
type: "string",
},
identity: {
type: "string",
identityIds: ["string"],
principalId: "string",
tenantId: "string",
},
keyDeliveryAccessControl: {
defaultAction: "string",
ipAllowLists: ["string"],
},
location: "string",
name: "string",
publicNetworkAccessEnabled: false,
storageAuthenticationType: "string",
tags: {
string: "string",
},
});
type: azure:media:ServiceAccount
properties:
encryption:
currentKeyIdentifier: string
keyVaultKeyIdentifier: string
managedIdentity:
useSystemAssignedIdentity: false
userAssignedIdentityId: string
type: string
identity:
identityIds:
- string
principalId: string
tenantId: string
type: string
keyDeliveryAccessControl:
defaultAction: string
ipAllowLists:
- string
location: string
name: string
publicNetworkAccessEnabled: false
resourceGroupName: string
storageAccounts:
- id: string
isPrimary: false
managedIdentity:
useSystemAssignedIdentity: false
userAssignedIdentityId: string
storageAuthenticationType: string
tags:
string: string
ServiceAccount 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 ServiceAccount resource accepts the following input properties:
- Resource
Group stringName - 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 List<ServiceAccount Storage Account> - One or more
storage_account
blocks as defined below. - Encryption
Service
Account Encryption - An
encryption
block as defined below. - Identity
Service
Account Identity - An
identity
block as defined below. - Key
Delivery ServiceAccess Control Account Key Delivery Access Control - 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.
- Public
Network boolAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - Storage
Authentication stringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Dictionary<string, string>
- A mapping of tags assigned to the resource.
- Resource
Group stringName - 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 []ServiceAccount Storage Account Args - One or more
storage_account
blocks as defined below. - Encryption
Service
Account Encryption Args - An
encryption
block as defined below. - Identity
Service
Account Identity Args - An
identity
block as defined below. - Key
Delivery ServiceAccess Control Account Key Delivery Access Control Args - 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.
- Public
Network boolAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - Storage
Authentication stringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - map[string]string
- A mapping of tags assigned to the resource.
- resource
Group StringName - 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 List<ServiceAccount Storage Account> - One or more
storage_account
blocks as defined below. - encryption
Service
Account Encryption - An
encryption
block as defined below. - identity
Service
Account Identity - An
identity
block as defined below. - key
Delivery ServiceAccess Control Account Key Delivery Access Control - 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.
- public
Network BooleanAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - storage
Authentication StringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Map<String,String>
- A mapping of tags assigned to the resource.
- resource
Group stringName - 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 ServiceAccount Storage Account[] - One or more
storage_account
blocks as defined below. - encryption
Service
Account Encryption - An
encryption
block as defined below. - identity
Service
Account Identity - An
identity
block as defined below. - key
Delivery ServiceAccess Control Account Key Delivery Access Control - 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.
- public
Network booleanAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - storage
Authentication stringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - {[key: string]: string}
- A mapping of tags assigned to the resource.
- resource_
group_ strname - 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[ServiceAccount Storage Account Args] - One or more
storage_account
blocks as defined below. - encryption
Service
Account Encryption Args - An
encryption
block as defined below. - identity
Service
Account Identity Args - An
identity
block as defined below. - key_
delivery_ Serviceaccess_ control Account Key Delivery Access Control Args - 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_ boolaccess_ enabled - Whether public network access is allowed for this server. Defaults to
true
. - storage_
authentication_ strtype - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Mapping[str, str]
- A mapping of tags assigned to the resource.
- resource
Group StringName - 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 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. - key
Delivery Property MapAccess Control - 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.
- public
Network BooleanAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - storage
Authentication StringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Map<String>
- A mapping of tags assigned to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceAccount 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 ServiceAccount Resource
Get an existing ServiceAccount 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?: ServiceAccountState, opts?: CustomResourceOptions): ServiceAccount
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
encryption: Optional[ServiceAccountEncryptionArgs] = None,
identity: Optional[ServiceAccountIdentityArgs] = None,
key_delivery_access_control: Optional[ServiceAccountKeyDeliveryAccessControlArgs] = 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[ServiceAccountStorageAccountArgs]] = None,
storage_authentication_type: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> ServiceAccount
func GetServiceAccount(ctx *Context, name string, id IDInput, state *ServiceAccountState, opts ...ResourceOption) (*ServiceAccount, error)
public static ServiceAccount Get(string name, Input<string> id, ServiceAccountState? state, CustomResourceOptions? opts = null)
public static ServiceAccount get(String name, Output<String> id, ServiceAccountState 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.
- Encryption
Service
Account Encryption - An
encryption
block as defined below. - Identity
Service
Account Identity - An
identity
block as defined below. - Key
Delivery ServiceAccess Control Account Key Delivery Access Control - 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.
- Public
Network boolAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - Resource
Group stringName - 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 List<ServiceAccount Storage Account> - One or more
storage_account
blocks as defined below. - Storage
Authentication stringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Dictionary<string, string>
- A mapping of tags assigned to the resource.
- Encryption
Service
Account Encryption Args - An
encryption
block as defined below. - Identity
Service
Account Identity Args - An
identity
block as defined below. - Key
Delivery ServiceAccess Control Account Key Delivery Access Control Args - 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.
- Public
Network boolAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - Resource
Group stringName - 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 []ServiceAccount Storage Account Args - One or more
storage_account
blocks as defined below. - Storage
Authentication stringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - map[string]string
- A mapping of tags assigned to the resource.
- encryption
Service
Account Encryption - An
encryption
block as defined below. - identity
Service
Account Identity - An
identity
block as defined below. - key
Delivery ServiceAccess Control Account Key Delivery Access Control - 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.
- public
Network BooleanAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - resource
Group StringName - 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 List<ServiceAccount Storage Account> - One or more
storage_account
blocks as defined below. - storage
Authentication StringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Map<String,String>
- A mapping of tags assigned to the resource.
- encryption
Service
Account Encryption - An
encryption
block as defined below. - identity
Service
Account Identity - An
identity
block as defined below. - key
Delivery ServiceAccess Control Account Key Delivery Access Control - 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.
- public
Network booleanAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - resource
Group stringName - 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 ServiceAccount Storage Account[] - One or more
storage_account
blocks as defined below. - storage
Authentication stringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - {[key: string]: string}
- A mapping of tags assigned to the resource.
- encryption
Service
Account Encryption Args - An
encryption
block as defined below. - identity
Service
Account Identity Args - An
identity
block as defined below. - key_
delivery_ Serviceaccess_ control Account Key Delivery Access Control Args - 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_ boolaccess_ enabled - Whether public network access is allowed for this server. Defaults to
true
. - resource_
group_ strname - 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[ServiceAccount Storage Account Args] - One or more
storage_account
blocks as defined below. - storage_
authentication_ strtype - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - 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. - key
Delivery Property MapAccess Control - 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.
- public
Network BooleanAccess Enabled - Whether public network access is allowed for this server. Defaults to
true
. - resource
Group StringName - 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 List<Property Map> - One or more
storage_account
blocks as defined below. - storage
Authentication StringType - Specifies the storage authentication type. Possible value is
ManagedIdentity
orSystem
. - Map<String>
- A mapping of tags assigned to the resource.
Supporting Types
ServiceAccountEncryption, ServiceAccountEncryptionArgs
- Current
Key stringIdentifier - The current key used to encrypt the Media Services Account, including the key version.
- Key
Vault stringKey Identifier - 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 ServiceAccount Encryption Managed Identity - A
managed_identity
block as defined below. - Type string
- Specifies the type of key used to encrypt the account data. Possible values are
SystemKey
andCustomerKey
. Defaults toSystemKey
.
- Current
Key stringIdentifier - The current key used to encrypt the Media Services Account, including the key version.
- Key
Vault stringKey Identifier - 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 ServiceAccount Encryption Managed Identity - A
managed_identity
block as defined below. - Type string
- Specifies the type of key used to encrypt the account data. Possible values are
SystemKey
andCustomerKey
. Defaults toSystemKey
.
- current
Key StringIdentifier - The current key used to encrypt the Media Services Account, including the key version.
- key
Vault StringKey Identifier - 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 ServiceAccount Encryption Managed Identity - A
managed_identity
block as defined below. - type String
- Specifies the type of key used to encrypt the account data. Possible values are
SystemKey
andCustomerKey
. Defaults toSystemKey
.
- current
Key stringIdentifier - The current key used to encrypt the Media Services Account, including the key version.
- key
Vault stringKey Identifier - 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 ServiceAccount Encryption Managed Identity - A
managed_identity
block as defined below. - type string
- Specifies the type of key used to encrypt the account data. Possible values are
SystemKey
andCustomerKey
. Defaults toSystemKey
.
- current_
key_ stridentifier - The current key used to encrypt the Media Services Account, including the key version.
- key_
vault_ strkey_ identifier - 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 ServiceAccount Encryption Managed Identity - A
managed_identity
block as defined below. - type str
- Specifies the type of key used to encrypt the account data. Possible values are
SystemKey
andCustomerKey
. Defaults toSystemKey
.
- current
Key StringIdentifier - The current key used to encrypt the Media Services Account, including the key version.
- key
Vault StringKey Identifier - 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 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
andCustomerKey
. Defaults toSystemKey
.
ServiceAccountEncryptionManagedIdentity, ServiceAccountEncryptionManagedIdentityArgs
- Use
System boolAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - User
Assigned stringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- Use
System boolAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - User
Assigned stringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use
System BooleanAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user
Assigned StringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use
System booleanAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user
Assigned stringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use_
system_ boolassigned_ identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user_
assigned_ stridentity_ id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use
System BooleanAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user
Assigned StringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
ServiceAccountIdentity, ServiceAccountIdentityArgs
- 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). - Identity
Ids List<string> - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
- Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id 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). - Identity
Ids []string - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
- Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id 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). - identity
Ids List<String> - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
- principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id 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). - identity
Ids string[] - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
- principal
Id string - The Principal ID associated with this Managed Service Identity.
- tenant
Id 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). - identity
Ids List<String> - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Media Services Account.
- principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
ServiceAccountKeyDeliveryAccessControl, ServiceAccountKeyDeliveryAccessControlArgs
- Default
Action string - The Default Action to use when no rules match from
ip_allow_list
. Possible values areAllow
andDeny
. - Ip
Allow List<string>Lists - One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
- Default
Action string - The Default Action to use when no rules match from
ip_allow_list
. Possible values areAllow
andDeny
. - Ip
Allow []stringLists - One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
- default
Action String - The Default Action to use when no rules match from
ip_allow_list
. Possible values areAllow
andDeny
. - ip
Allow List<String>Lists - One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
- default
Action string - The Default Action to use when no rules match from
ip_allow_list
. Possible values areAllow
andDeny
. - ip
Allow string[]Lists - 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 areAllow
andDeny
. - ip_
allow_ Sequence[str]lists - One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
- default
Action String - The Default Action to use when no rules match from
ip_allow_list
. Possible values areAllow
andDeny
. - ip
Allow List<String>Lists - One or more IP Addresses, or CIDR Blocks which should be able to access the Key Delivery.
ServiceAccountStorageAccount, ServiceAccountStorageAccountArgs
- Id string
- 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 ServiceAccount Storage Account Managed Identity - 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.
- 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 ServiceAccount Storage Account Managed Identity - 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.
- is
Primary 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- managed
Identity ServiceAccount Storage Account Managed Identity - 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.
- is
Primary 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- managed
Identity ServiceAccount Storage Account Managed Identity - 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 ServiceAccount Storage Account Managed Identity - 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.
- is
Primary 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- managed
Identity Property Map - A
managed_identity
block as defined below.
ServiceAccountStorageAccountManagedIdentity, ServiceAccountStorageAccountManagedIdentityArgs
- Use
System boolAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - User
Assigned stringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- Use
System boolAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - User
Assigned stringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use
System BooleanAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user
Assigned StringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use
System booleanAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user
Assigned stringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use_
system_ boolassigned_ identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user_
assigned_ stridentity_ id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
- use
System BooleanAssigned Identity - Whether to use System Assigned Identity. Possible Values are
true
andfalse
. - user
Assigned StringIdentity Id - The ID of the User Assigned Identity. This value can only be set when
use_system_assigned_identity
isfalse
Import
Media Services Accounts can be imported using the resource id
, e.g.
$ pulumi import azure:media/serviceAccount:ServiceAccount 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.