octopusdeploy.AzureServicePrincipal
Explore with Pulumi AI
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:
- Application
Id string - The application ID of this resource.
- Password string
- The password associated with this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Service stringPrincipal Id - 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.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- List<string>
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants List<string>
- A list of tenant IDs associated with this resource.
- Application
Id string - The application ID of this resource.
- Password string
- The password associated with this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Service stringPrincipal Id - 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.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- []string
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants []string
- A list of tenant IDs associated with this resource.
- application
Id String - The application ID of this resource.
- password String
- The password associated with this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Service StringPrincipal Id - 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.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants List<String>
- A list of tenant IDs associated with this resource.
- application
Id string - The application ID of this resource.
- password string
- The password associated with this resource.
- subscription
Id string - The subscription ID of this resource.
- tenant
Id string - The tenant ID of this resource.
- authentication
Endpoint string - The authentication endpoint URI for this resource.
- azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Service stringPrincipal Id - 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.
- resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- space
Id string - The space ID associated with this resource.
- string[]
- A list of tenant tags associated with this resource.
- tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - 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
, orAzureUSGovernment
. - azure_
service_ strprincipal_ id - 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_ strendpoint - The resource manager endpoint URI for this resource.
- space_
id str - The space ID associated with this resource.
- Sequence[str]
- A list of tenant tags associated with this resource.
- tenanted_
deployment_ strparticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants Sequence[str]
- A list of tenant IDs associated with this resource.
- application
Id String - The application ID of this resource.
- password String
- The password associated with this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Service StringPrincipal Id - 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.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - 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.
- Application
Id string - The application ID of this resource.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Service stringPrincipal Id - 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.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- List<string>
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants List<string>
- A list of tenant IDs associated with this resource.
- Application
Id string - The application ID of this resource.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Service stringPrincipal Id - 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.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- []string
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants []string
- A list of tenant IDs associated with this resource.
- application
Id String - The application ID of this resource.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Service StringPrincipal Id - 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.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants List<String>
- A list of tenant IDs associated with this resource.
- application
Id string - The application ID of this resource.
- authentication
Endpoint string - The authentication endpoint URI for this resource.
- azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Service stringPrincipal Id - 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.
- resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- space
Id string - The space ID associated with this resource.
- subscription
Id string - The subscription ID of this resource.
- tenant
Id string - The tenant ID of this resource.
- string[]
- A list of tenant tags associated with this resource.
- tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - 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
, orAzureUSGovernment
. - azure_
service_ strprincipal_ id - 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_ strendpoint - 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.
- Sequence[str]
- A list of tenant tags associated with this resource.
- tenanted_
deployment_ strparticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants Sequence[str]
- A list of tenant IDs associated with this resource.
- application
Id String - The application ID of this resource.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Service StringPrincipal Id - 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.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - 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.