1. Packages
  2. Octopusdeploy Provider
  3. API Docs
  4. AzureServicePrincipal
octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs

octopusdeploy.AzureServicePrincipal

Explore with Pulumi AI

octopusdeploy logo
octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs

    This resource manages Azure service principal accounts in Octopus Deploy.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as octopusdeploy from "@pulumi/octopusdeploy";
    
    const example = new octopusdeploy.AzureServicePrincipal("example", {
        applicationId: "00000000-0000-0000-0000-000000000000",
        password: "###########",
        subscriptionId: "00000000-0000-0000-0000-000000000000",
        tenantId: "00000000-0000-0000-0000-000000000000",
    });
    
    import pulumi
    import pulumi_octopusdeploy as octopusdeploy
    
    example = octopusdeploy.AzureServicePrincipal("example",
        application_id="00000000-0000-0000-0000-000000000000",
        password="###########",
        subscription_id="00000000-0000-0000-0000-000000000000",
        tenant_id="00000000-0000-0000-0000-000000000000")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/octopusdeploy/octopusdeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := octopusdeploy.NewAzureServicePrincipal(ctx, "example", &octopusdeploy.AzureServicePrincipalArgs{
    			ApplicationId:  pulumi.String("00000000-0000-0000-0000-000000000000"),
    			Password:       pulumi.String("###########"),
    			SubscriptionId: pulumi.String("00000000-0000-0000-0000-000000000000"),
    			TenantId:       pulumi.String("00000000-0000-0000-0000-000000000000"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Octopusdeploy = Pulumi.Octopusdeploy;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Octopusdeploy.AzureServicePrincipal("example", new()
        {
            ApplicationId = "00000000-0000-0000-0000-000000000000",
            Password = "###########",
            SubscriptionId = "00000000-0000-0000-0000-000000000000",
            TenantId = "00000000-0000-0000-0000-000000000000",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.octopusdeploy.AzureServicePrincipal;
    import com.pulumi.octopusdeploy.AzureServicePrincipalArgs;
    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 AzureServicePrincipal("example", AzureServicePrincipalArgs.builder()
                .applicationId("00000000-0000-0000-0000-000000000000")
                .password("###########")
                .subscriptionId("00000000-0000-0000-0000-000000000000")
                .tenantId("00000000-0000-0000-0000-000000000000")
                .build());
    
        }
    }
    
    resources:
      example:
        type: octopusdeploy:AzureServicePrincipal
        properties:
          applicationId: 00000000-0000-0000-0000-000000000000
          password: '###########'
          # required; get from secure environment/store
          subscriptionId: 00000000-0000-0000-0000-000000000000
          tenantId: 00000000-0000-0000-0000-000000000000
    

    Create AzureServicePrincipal Resource

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

    Constructor syntax

    new AzureServicePrincipal(name: string, args: AzureServicePrincipalArgs, opts?: CustomResourceOptions);
    @overload
    def AzureServicePrincipal(resource_name: str,
                              args: AzureServicePrincipalArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def AzureServicePrincipal(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              application_id: Optional[str] = None,
                              tenant_id: Optional[str] = None,
                              subscription_id: Optional[str] = None,
                              password: Optional[str] = None,
                              name: Optional[str] = None,
                              environments: Optional[Sequence[str]] = None,
                              description: Optional[str] = None,
                              azure_service_principal_id: Optional[str] = None,
                              resource_manager_endpoint: Optional[str] = None,
                              space_id: Optional[str] = None,
                              azure_environment: Optional[str] = None,
                              authentication_endpoint: Optional[str] = None,
                              tenant_tags: Optional[Sequence[str]] = None,
                              tenanted_deployment_participation: Optional[str] = None,
                              tenants: Optional[Sequence[str]] = None)
    func NewAzureServicePrincipal(ctx *Context, name string, args AzureServicePrincipalArgs, opts ...ResourceOption) (*AzureServicePrincipal, error)
    public AzureServicePrincipal(string name, AzureServicePrincipalArgs args, CustomResourceOptions? opts = null)
    public AzureServicePrincipal(String name, AzureServicePrincipalArgs args)
    public AzureServicePrincipal(String name, AzureServicePrincipalArgs args, CustomResourceOptions options)
    
    type: octopusdeploy:AzureServicePrincipal
    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 AzureServicePrincipalArgs
    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 AzureServicePrincipalArgs
    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 AzureServicePrincipalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AzureServicePrincipalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AzureServicePrincipalArgs
    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 azureServicePrincipalResource = new Octopusdeploy.AzureServicePrincipal("azureServicePrincipalResource", new()
    {
        ApplicationId = "string",
        TenantId = "string",
        SubscriptionId = "string",
        Password = "string",
        Name = "string",
        Environments = new[]
        {
            "string",
        },
        Description = "string",
        AzureServicePrincipalId = "string",
        ResourceManagerEndpoint = "string",
        SpaceId = "string",
        AzureEnvironment = "string",
        AuthenticationEndpoint = "string",
        TenantTags = new[]
        {
            "string",
        },
        TenantedDeploymentParticipation = "string",
        Tenants = new[]
        {
            "string",
        },
    });
    
    example, err := octopusdeploy.NewAzureServicePrincipal(ctx, "azureServicePrincipalResource", &octopusdeploy.AzureServicePrincipalArgs{
    	ApplicationId:  pulumi.String("string"),
    	TenantId:       pulumi.String("string"),
    	SubscriptionId: pulumi.String("string"),
    	Password:       pulumi.String("string"),
    	Name:           pulumi.String("string"),
    	Environments: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description:             pulumi.String("string"),
    	AzureServicePrincipalId: pulumi.String("string"),
    	ResourceManagerEndpoint: pulumi.String("string"),
    	SpaceId:                 pulumi.String("string"),
    	AzureEnvironment:        pulumi.String("string"),
    	AuthenticationEndpoint:  pulumi.String("string"),
    	TenantTags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TenantedDeploymentParticipation: pulumi.String("string"),
    	Tenants: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var azureServicePrincipalResource = new AzureServicePrincipal("azureServicePrincipalResource", AzureServicePrincipalArgs.builder()
        .applicationId("string")
        .tenantId("string")
        .subscriptionId("string")
        .password("string")
        .name("string")
        .environments("string")
        .description("string")
        .azureServicePrincipalId("string")
        .resourceManagerEndpoint("string")
        .spaceId("string")
        .azureEnvironment("string")
        .authenticationEndpoint("string")
        .tenantTags("string")
        .tenantedDeploymentParticipation("string")
        .tenants("string")
        .build());
    
    azure_service_principal_resource = octopusdeploy.AzureServicePrincipal("azureServicePrincipalResource",
        application_id="string",
        tenant_id="string",
        subscription_id="string",
        password="string",
        name="string",
        environments=["string"],
        description="string",
        azure_service_principal_id="string",
        resource_manager_endpoint="string",
        space_id="string",
        azure_environment="string",
        authentication_endpoint="string",
        tenant_tags=["string"],
        tenanted_deployment_participation="string",
        tenants=["string"])
    
    const azureServicePrincipalResource = new octopusdeploy.AzureServicePrincipal("azureServicePrincipalResource", {
        applicationId: "string",
        tenantId: "string",
        subscriptionId: "string",
        password: "string",
        name: "string",
        environments: ["string"],
        description: "string",
        azureServicePrincipalId: "string",
        resourceManagerEndpoint: "string",
        spaceId: "string",
        azureEnvironment: "string",
        authenticationEndpoint: "string",
        tenantTags: ["string"],
        tenantedDeploymentParticipation: "string",
        tenants: ["string"],
    });
    
    type: octopusdeploy:AzureServicePrincipal
    properties:
        applicationId: string
        authenticationEndpoint: string
        azureEnvironment: string
        azureServicePrincipalId: string
        description: string
        environments:
            - string
        name: string
        password: string
        resourceManagerEndpoint: string
        spaceId: string
        subscriptionId: string
        tenantId: string
        tenantTags:
            - string
        tenantedDeploymentParticipation: string
        tenants:
            - string
    

    AzureServicePrincipal Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AzureServicePrincipal resource accepts the following input properties:

    ApplicationId string
    The application ID of this resource.
    Password string
    The password associated with this resource.
    SubscriptionId string
    The subscription ID of this resource.
    TenantId string
    The tenant ID of this resource.
    AuthenticationEndpoint string
    The authentication endpoint URI for this resource.
    AzureEnvironment string
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    AzureServicePrincipalId string
    The unique ID for this resource.
    Description string
    The description of this Azure service principal account.
    Environments List<string>
    A list of environment IDs associated with this resource.
    Name string
    The name of this resource.
    ResourceManagerEndpoint string
    The resource manager endpoint URI for this resource.
    SpaceId string
    The space ID associated with this resource.
    TenantTags List<string>
    A list of tenant tags associated with this resource.
    TenantedDeploymentParticipation string
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    Tenants List<string>
    A list of tenant IDs associated with this resource.
    ApplicationId string
    The application ID of this resource.
    Password string
    The password associated with this resource.
    SubscriptionId string
    The subscription ID of this resource.
    TenantId string
    The tenant ID of this resource.
    AuthenticationEndpoint string
    The authentication endpoint URI for this resource.
    AzureEnvironment string
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    AzureServicePrincipalId string
    The unique ID for this resource.
    Description string
    The description of this Azure service principal account.
    Environments []string
    A list of environment IDs associated with this resource.
    Name string
    The name of this resource.
    ResourceManagerEndpoint string
    The resource manager endpoint URI for this resource.
    SpaceId string
    The space ID associated with this resource.
    TenantTags []string
    A list of tenant tags associated with this resource.
    TenantedDeploymentParticipation string
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    Tenants []string
    A list of tenant IDs associated with this resource.
    applicationId String
    The application ID of this resource.
    password String
    The password associated with this resource.
    subscriptionId String
    The subscription ID of this resource.
    tenantId String
    The tenant ID of this resource.
    authenticationEndpoint String
    The authentication endpoint URI for this resource.
    azureEnvironment String
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azureServicePrincipalId String
    The unique ID for this resource.
    description String
    The description of this Azure service principal account.
    environments List<String>
    A list of environment IDs associated with this resource.
    name String
    The name of this resource.
    resourceManagerEndpoint String
    The resource manager endpoint URI for this resource.
    spaceId String
    The space ID associated with this resource.
    tenantTags List<String>
    A list of tenant tags associated with this resource.
    tenantedDeploymentParticipation String
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants List<String>
    A list of tenant IDs associated with this resource.
    applicationId string
    The application ID of this resource.
    password string
    The password associated with this resource.
    subscriptionId string
    The subscription ID of this resource.
    tenantId string
    The tenant ID of this resource.
    authenticationEndpoint string
    The authentication endpoint URI for this resource.
    azureEnvironment string
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azureServicePrincipalId string
    The unique ID for this resource.
    description string
    The description of this Azure service principal account.
    environments string[]
    A list of environment IDs associated with this resource.
    name string
    The name of this resource.
    resourceManagerEndpoint string
    The resource manager endpoint URI for this resource.
    spaceId string
    The space ID associated with this resource.
    tenantTags string[]
    A list of tenant tags associated with this resource.
    tenantedDeploymentParticipation string
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants string[]
    A list of tenant IDs associated with this resource.
    application_id str
    The application ID of this resource.
    password str
    The password associated with this resource.
    subscription_id str
    The subscription ID of this resource.
    tenant_id str
    The tenant ID of this resource.
    authentication_endpoint str
    The authentication endpoint URI for this resource.
    azure_environment str
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azure_service_principal_id str
    The unique ID for this resource.
    description str
    The description of this Azure service principal account.
    environments Sequence[str]
    A list of environment IDs associated with this resource.
    name str
    The name of this resource.
    resource_manager_endpoint str
    The resource manager endpoint URI for this resource.
    space_id str
    The space ID associated with this resource.
    tenant_tags Sequence[str]
    A list of tenant tags associated with this resource.
    tenanted_deployment_participation str
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants Sequence[str]
    A list of tenant IDs associated with this resource.
    applicationId String
    The application ID of this resource.
    password String
    The password associated with this resource.
    subscriptionId String
    The subscription ID of this resource.
    tenantId String
    The tenant ID of this resource.
    authenticationEndpoint String
    The authentication endpoint URI for this resource.
    azureEnvironment String
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azureServicePrincipalId String
    The unique ID for this resource.
    description String
    The description of this Azure service principal account.
    environments List<String>
    A list of environment IDs associated with this resource.
    name String
    The name of this resource.
    resourceManagerEndpoint String
    The resource manager endpoint URI for this resource.
    spaceId String
    The space ID associated with this resource.
    tenantTags List<String>
    A list of tenant tags associated with this resource.
    tenantedDeploymentParticipation String
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants List<String>
    A list of tenant IDs associated with this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AzureServicePrincipal 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 AzureServicePrincipal Resource

    Get an existing AzureServicePrincipal 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?: AzureServicePrincipalState, opts?: CustomResourceOptions): AzureServicePrincipal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            authentication_endpoint: Optional[str] = None,
            azure_environment: Optional[str] = None,
            azure_service_principal_id: Optional[str] = None,
            description: Optional[str] = None,
            environments: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            resource_manager_endpoint: Optional[str] = None,
            space_id: Optional[str] = None,
            subscription_id: Optional[str] = None,
            tenant_id: Optional[str] = None,
            tenant_tags: Optional[Sequence[str]] = None,
            tenanted_deployment_participation: Optional[str] = None,
            tenants: Optional[Sequence[str]] = None) -> AzureServicePrincipal
    func GetAzureServicePrincipal(ctx *Context, name string, id IDInput, state *AzureServicePrincipalState, opts ...ResourceOption) (*AzureServicePrincipal, error)
    public static AzureServicePrincipal Get(string name, Input<string> id, AzureServicePrincipalState? state, CustomResourceOptions? opts = null)
    public static AzureServicePrincipal get(String name, Output<String> id, AzureServicePrincipalState state, CustomResourceOptions options)
    resources:  _:    type: octopusdeploy:AzureServicePrincipal    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationId string
    The application ID of this resource.
    AuthenticationEndpoint string
    The authentication endpoint URI for this resource.
    AzureEnvironment string
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    AzureServicePrincipalId string
    The unique ID for this resource.
    Description string
    The description of this Azure service principal account.
    Environments List<string>
    A list of environment IDs associated with this resource.
    Name string
    The name of this resource.
    Password string
    The password associated with this resource.
    ResourceManagerEndpoint string
    The resource manager endpoint URI for this resource.
    SpaceId string
    The space ID associated with this resource.
    SubscriptionId string
    The subscription ID of this resource.
    TenantId string
    The tenant ID of this resource.
    TenantTags List<string>
    A list of tenant tags associated with this resource.
    TenantedDeploymentParticipation string
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    Tenants List<string>
    A list of tenant IDs associated with this resource.
    ApplicationId string
    The application ID of this resource.
    AuthenticationEndpoint string
    The authentication endpoint URI for this resource.
    AzureEnvironment string
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    AzureServicePrincipalId string
    The unique ID for this resource.
    Description string
    The description of this Azure service principal account.
    Environments []string
    A list of environment IDs associated with this resource.
    Name string
    The name of this resource.
    Password string
    The password associated with this resource.
    ResourceManagerEndpoint string
    The resource manager endpoint URI for this resource.
    SpaceId string
    The space ID associated with this resource.
    SubscriptionId string
    The subscription ID of this resource.
    TenantId string
    The tenant ID of this resource.
    TenantTags []string
    A list of tenant tags associated with this resource.
    TenantedDeploymentParticipation string
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    Tenants []string
    A list of tenant IDs associated with this resource.
    applicationId String
    The application ID of this resource.
    authenticationEndpoint String
    The authentication endpoint URI for this resource.
    azureEnvironment String
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azureServicePrincipalId String
    The unique ID for this resource.
    description String
    The description of this Azure service principal account.
    environments List<String>
    A list of environment IDs associated with this resource.
    name String
    The name of this resource.
    password String
    The password associated with this resource.
    resourceManagerEndpoint String
    The resource manager endpoint URI for this resource.
    spaceId String
    The space ID associated with this resource.
    subscriptionId String
    The subscription ID of this resource.
    tenantId String
    The tenant ID of this resource.
    tenantTags List<String>
    A list of tenant tags associated with this resource.
    tenantedDeploymentParticipation String
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants List<String>
    A list of tenant IDs associated with this resource.
    applicationId string
    The application ID of this resource.
    authenticationEndpoint string
    The authentication endpoint URI for this resource.
    azureEnvironment string
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azureServicePrincipalId string
    The unique ID for this resource.
    description string
    The description of this Azure service principal account.
    environments string[]
    A list of environment IDs associated with this resource.
    name string
    The name of this resource.
    password string
    The password associated with this resource.
    resourceManagerEndpoint string
    The resource manager endpoint URI for this resource.
    spaceId string
    The space ID associated with this resource.
    subscriptionId string
    The subscription ID of this resource.
    tenantId string
    The tenant ID of this resource.
    tenantTags string[]
    A list of tenant tags associated with this resource.
    tenantedDeploymentParticipation string
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants string[]
    A list of tenant IDs associated with this resource.
    application_id str
    The application ID of this resource.
    authentication_endpoint str
    The authentication endpoint URI for this resource.
    azure_environment str
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azure_service_principal_id str
    The unique ID for this resource.
    description str
    The description of this Azure service principal account.
    environments Sequence[str]
    A list of environment IDs associated with this resource.
    name str
    The name of this resource.
    password str
    The password associated with this resource.
    resource_manager_endpoint str
    The resource manager endpoint URI for this resource.
    space_id str
    The space ID associated with this resource.
    subscription_id str
    The subscription ID of this resource.
    tenant_id str
    The tenant ID of this resource.
    tenant_tags Sequence[str]
    A list of tenant tags associated with this resource.
    tenanted_deployment_participation str
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants Sequence[str]
    A list of tenant IDs associated with this resource.
    applicationId String
    The application ID of this resource.
    authenticationEndpoint String
    The authentication endpoint URI for this resource.
    azureEnvironment String
    The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
    azureServicePrincipalId String
    The unique ID for this resource.
    description String
    The description of this Azure service principal account.
    environments List<String>
    A list of environment IDs associated with this resource.
    name String
    The name of this resource.
    password String
    The password associated with this resource.
    resourceManagerEndpoint String
    The resource manager endpoint URI for this resource.
    spaceId String
    The space ID associated with this resource.
    subscriptionId String
    The subscription ID of this resource.
    tenantId String
    The tenant ID of this resource.
    tenantTags List<String>
    A list of tenant tags associated with this resource.
    tenantedDeploymentParticipation String
    The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
    tenants List<String>
    A list of tenant IDs associated with this resource.

    Import

    $ pulumi import octopusdeploy:index/azureServicePrincipal:AzureServicePrincipal [options] octopusdeploy_azure_service_principal.<name> <account-id>
    

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

    Package Details

    Repository
    octopusdeploy octopusdeploylabs/terraform-provider-octopusdeploy
    License
    Notes
    This Pulumi package is based on the octopusdeploy Terraform Provider.
    octopusdeploy logo
    octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs