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

octopusdeploy.getCloudRegionDeploymentTargets

Explore with Pulumi AI

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

    Provides information about existing cloud region deployment targets.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as octopusdeploy from "@pulumi/octopusdeploy";
    
    const example = octopusdeploy.getCloudRegionDeploymentTargets({
        environments: [
            "Environments-123",
            "Environments-321",
        ],
        ids: ["Machines-123"],
        name: "Azure North America",
        partialName: "Azure Nor",
        skip: 5,
        take: 100,
    });
    
    import pulumi
    import pulumi_octopusdeploy as octopusdeploy
    
    example = octopusdeploy.get_cloud_region_deployment_targets(environments=[
            "Environments-123",
            "Environments-321",
        ],
        ids=["Machines-123"],
        name="Azure North America",
        partial_name="Azure Nor",
        skip=5,
        take=100)
    
    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.GetCloudRegionDeploymentTargets(ctx, &octopusdeploy.GetCloudRegionDeploymentTargetsArgs{
    			Environments: []string{
    				"Environments-123",
    				"Environments-321",
    			},
    			Ids: []string{
    				"Machines-123",
    			},
    			Name:        pulumi.StringRef("Azure North America"),
    			PartialName: pulumi.StringRef("Azure Nor"),
    			Skip:        pulumi.Float64Ref(5),
    			Take:        pulumi.Float64Ref(100),
    		}, nil)
    		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 = Octopusdeploy.GetCloudRegionDeploymentTargets.Invoke(new()
        {
            Environments = new[]
            {
                "Environments-123",
                "Environments-321",
            },
            Ids = new[]
            {
                "Machines-123",
            },
            Name = "Azure North America",
            PartialName = "Azure Nor",
            Skip = 5,
            Take = 100,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.octopusdeploy.OctopusdeployFunctions;
    import com.pulumi.octopusdeploy.inputs.GetCloudRegionDeploymentTargetsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = OctopusdeployFunctions.getCloudRegionDeploymentTargets(GetCloudRegionDeploymentTargetsArgs.builder()
                .environments(            
                    "Environments-123",
                    "Environments-321")
                .ids("Machines-123")
                .name("Azure North America")
                .partialName("Azure Nor")
                .skip(5)
                .take(100)
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: octopusdeploy:getCloudRegionDeploymentTargets
          arguments:
            environments:
              - Environments-123
              - Environments-321
            ids:
              - Machines-123
            name: Azure North America
            partialName: Azure Nor
            skip: 5
            take: 100
    

    Using getCloudRegionDeploymentTargets

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCloudRegionDeploymentTargets(args: GetCloudRegionDeploymentTargetsArgs, opts?: InvokeOptions): Promise<GetCloudRegionDeploymentTargetsResult>
    function getCloudRegionDeploymentTargetsOutput(args: GetCloudRegionDeploymentTargetsOutputArgs, opts?: InvokeOptions): Output<GetCloudRegionDeploymentTargetsResult>
    def get_cloud_region_deployment_targets(deployment_id: Optional[str] = None,
                                            environments: Optional[Sequence[str]] = None,
                                            health_statuses: Optional[Sequence[str]] = None,
                                            ids: Optional[Sequence[str]] = None,
                                            is_disabled: Optional[bool] = None,
                                            name: Optional[str] = None,
                                            partial_name: Optional[str] = None,
                                            roles: Optional[Sequence[str]] = None,
                                            shell_names: Optional[Sequence[str]] = None,
                                            skip: Optional[float] = None,
                                            space_id: Optional[str] = None,
                                            take: Optional[float] = None,
                                            tenant_tags: Optional[Sequence[str]] = None,
                                            tenants: Optional[Sequence[str]] = None,
                                            thumbprint: Optional[str] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetCloudRegionDeploymentTargetsResult
    def get_cloud_region_deployment_targets_output(deployment_id: Optional[pulumi.Input[str]] = None,
                                            environments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            health_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            is_disabled: Optional[pulumi.Input[bool]] = None,
                                            name: Optional[pulumi.Input[str]] = None,
                                            partial_name: Optional[pulumi.Input[str]] = None,
                                            roles: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            shell_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            skip: Optional[pulumi.Input[float]] = None,
                                            space_id: Optional[pulumi.Input[str]] = None,
                                            take: Optional[pulumi.Input[float]] = None,
                                            tenant_tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            tenants: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            thumbprint: Optional[pulumi.Input[str]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetCloudRegionDeploymentTargetsResult]
    func GetCloudRegionDeploymentTargets(ctx *Context, args *GetCloudRegionDeploymentTargetsArgs, opts ...InvokeOption) (*GetCloudRegionDeploymentTargetsResult, error)
    func GetCloudRegionDeploymentTargetsOutput(ctx *Context, args *GetCloudRegionDeploymentTargetsOutputArgs, opts ...InvokeOption) GetCloudRegionDeploymentTargetsResultOutput

    > Note: This function is named GetCloudRegionDeploymentTargets in the Go SDK.

    public static class GetCloudRegionDeploymentTargets 
    {
        public static Task<GetCloudRegionDeploymentTargetsResult> InvokeAsync(GetCloudRegionDeploymentTargetsArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudRegionDeploymentTargetsResult> Invoke(GetCloudRegionDeploymentTargetsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudRegionDeploymentTargetsResult> getCloudRegionDeploymentTargets(GetCloudRegionDeploymentTargetsArgs args, InvokeOptions options)
    public static Output<GetCloudRegionDeploymentTargetsResult> getCloudRegionDeploymentTargets(GetCloudRegionDeploymentTargetsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: octopusdeploy:index/getCloudRegionDeploymentTargets:getCloudRegionDeploymentTargets
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DeploymentId string
    A filter to search by deployment ID.
    Environments List<string>
    A filter to search by a list of environment IDs.
    HealthStatuses List<string>
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    Ids List<string>
    A filter to search by a list of IDs.
    IsDisabled bool
    A filter to search by the disabled status of a resource.
    Name string
    A filter to search by name.
    PartialName string
    A filter to search by the partial match of a name.
    Roles List<string>
    A filter to search by a list of role IDs.
    ShellNames List<string>
    A list of shell names to match in the query and/or search
    Skip double
    A filter to specify the number of items to skip in the response.
    SpaceId string
    The space ID associated with this resource.
    Take double
    A filter to specify the number of items to take (or return) in the response.
    TenantTags List<string>
    A filter to search by a list of tenant tags.
    Tenants List<string>
    A filter to search by a list of tenant IDs.
    Thumbprint string
    The thumbprint of the deployment target to match in the query and/or search
    DeploymentId string
    A filter to search by deployment ID.
    Environments []string
    A filter to search by a list of environment IDs.
    HealthStatuses []string
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    Ids []string
    A filter to search by a list of IDs.
    IsDisabled bool
    A filter to search by the disabled status of a resource.
    Name string
    A filter to search by name.
    PartialName string
    A filter to search by the partial match of a name.
    Roles []string
    A filter to search by a list of role IDs.
    ShellNames []string
    A list of shell names to match in the query and/or search
    Skip float64
    A filter to specify the number of items to skip in the response.
    SpaceId string
    The space ID associated with this resource.
    Take float64
    A filter to specify the number of items to take (or return) in the response.
    TenantTags []string
    A filter to search by a list of tenant tags.
    Tenants []string
    A filter to search by a list of tenant IDs.
    Thumbprint string
    The thumbprint of the deployment target to match in the query and/or search
    deploymentId String
    A filter to search by deployment ID.
    environments List<String>
    A filter to search by a list of environment IDs.
    healthStatuses List<String>
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids List<String>
    A filter to search by a list of IDs.
    isDisabled Boolean
    A filter to search by the disabled status of a resource.
    name String
    A filter to search by name.
    partialName String
    A filter to search by the partial match of a name.
    roles List<String>
    A filter to search by a list of role IDs.
    shellNames List<String>
    A list of shell names to match in the query and/or search
    skip Double
    A filter to specify the number of items to skip in the response.
    spaceId String
    The space ID associated with this resource.
    take Double
    A filter to specify the number of items to take (or return) in the response.
    tenantTags List<String>
    A filter to search by a list of tenant tags.
    tenants List<String>
    A filter to search by a list of tenant IDs.
    thumbprint String
    The thumbprint of the deployment target to match in the query and/or search
    deploymentId string
    A filter to search by deployment ID.
    environments string[]
    A filter to search by a list of environment IDs.
    healthStatuses string[]
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids string[]
    A filter to search by a list of IDs.
    isDisabled boolean
    A filter to search by the disabled status of a resource.
    name string
    A filter to search by name.
    partialName string
    A filter to search by the partial match of a name.
    roles string[]
    A filter to search by a list of role IDs.
    shellNames string[]
    A list of shell names to match in the query and/or search
    skip number
    A filter to specify the number of items to skip in the response.
    spaceId string
    The space ID associated with this resource.
    take number
    A filter to specify the number of items to take (or return) in the response.
    tenantTags string[]
    A filter to search by a list of tenant tags.
    tenants string[]
    A filter to search by a list of tenant IDs.
    thumbprint string
    The thumbprint of the deployment target to match in the query and/or search
    deployment_id str
    A filter to search by deployment ID.
    environments Sequence[str]
    A filter to search by a list of environment IDs.
    health_statuses Sequence[str]
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids Sequence[str]
    A filter to search by a list of IDs.
    is_disabled bool
    A filter to search by the disabled status of a resource.
    name str
    A filter to search by name.
    partial_name str
    A filter to search by the partial match of a name.
    roles Sequence[str]
    A filter to search by a list of role IDs.
    shell_names Sequence[str]
    A list of shell names to match in the query and/or search
    skip float
    A filter to specify the number of items to skip in the response.
    space_id str
    The space ID associated with this resource.
    take float
    A filter to specify the number of items to take (or return) in the response.
    tenant_tags Sequence[str]
    A filter to search by a list of tenant tags.
    tenants Sequence[str]
    A filter to search by a list of tenant IDs.
    thumbprint str
    The thumbprint of the deployment target to match in the query and/or search
    deploymentId String
    A filter to search by deployment ID.
    environments List<String>
    A filter to search by a list of environment IDs.
    healthStatuses List<String>
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids List<String>
    A filter to search by a list of IDs.
    isDisabled Boolean
    A filter to search by the disabled status of a resource.
    name String
    A filter to search by name.
    partialName String
    A filter to search by the partial match of a name.
    roles List<String>
    A filter to search by a list of role IDs.
    shellNames List<String>
    A list of shell names to match in the query and/or search
    skip Number
    A filter to specify the number of items to skip in the response.
    spaceId String
    The space ID associated with this resource.
    take Number
    A filter to specify the number of items to take (or return) in the response.
    tenantTags List<String>
    A filter to search by a list of tenant tags.
    tenants List<String>
    A filter to search by a list of tenant IDs.
    thumbprint String
    The thumbprint of the deployment target to match in the query and/or search

    getCloudRegionDeploymentTargets Result

    The following output properties are available:

    CloudRegionDeploymentTargets List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTarget>
    A list of cloud region deployment targets that match the filter(s).
    Id string
    An auto-generated identifier that includes the timestamp when this data source was last modified.
    SpaceId string
    The space ID associated with this resource.
    DeploymentId string
    A filter to search by deployment ID.
    Environments List<string>
    A filter to search by a list of environment IDs.
    HealthStatuses List<string>
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    Ids List<string>
    A filter to search by a list of IDs.
    IsDisabled bool
    A filter to search by the disabled status of a resource.
    Name string
    A filter to search by name.
    PartialName string
    A filter to search by the partial match of a name.
    Roles List<string>
    A filter to search by a list of role IDs.
    ShellNames List<string>
    A list of shell names to match in the query and/or search
    Skip double
    A filter to specify the number of items to skip in the response.
    Take double
    A filter to specify the number of items to take (or return) in the response.
    TenantTags List<string>
    A filter to search by a list of tenant tags.
    Tenants List<string>
    A filter to search by a list of tenant IDs.
    Thumbprint string
    The thumbprint of the deployment target to match in the query and/or search
    CloudRegionDeploymentTargets []GetCloudRegionDeploymentTargetsCloudRegionDeploymentTarget
    A list of cloud region deployment targets that match the filter(s).
    Id string
    An auto-generated identifier that includes the timestamp when this data source was last modified.
    SpaceId string
    The space ID associated with this resource.
    DeploymentId string
    A filter to search by deployment ID.
    Environments []string
    A filter to search by a list of environment IDs.
    HealthStatuses []string
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    Ids []string
    A filter to search by a list of IDs.
    IsDisabled bool
    A filter to search by the disabled status of a resource.
    Name string
    A filter to search by name.
    PartialName string
    A filter to search by the partial match of a name.
    Roles []string
    A filter to search by a list of role IDs.
    ShellNames []string
    A list of shell names to match in the query and/or search
    Skip float64
    A filter to specify the number of items to skip in the response.
    Take float64
    A filter to specify the number of items to take (or return) in the response.
    TenantTags []string
    A filter to search by a list of tenant tags.
    Tenants []string
    A filter to search by a list of tenant IDs.
    Thumbprint string
    The thumbprint of the deployment target to match in the query and/or search
    cloudRegionDeploymentTargets List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTarget>
    A list of cloud region deployment targets that match the filter(s).
    id String
    An auto-generated identifier that includes the timestamp when this data source was last modified.
    spaceId String
    The space ID associated with this resource.
    deploymentId String
    A filter to search by deployment ID.
    environments List<String>
    A filter to search by a list of environment IDs.
    healthStatuses List<String>
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids List<String>
    A filter to search by a list of IDs.
    isDisabled Boolean
    A filter to search by the disabled status of a resource.
    name String
    A filter to search by name.
    partialName String
    A filter to search by the partial match of a name.
    roles List<String>
    A filter to search by a list of role IDs.
    shellNames List<String>
    A list of shell names to match in the query and/or search
    skip Double
    A filter to specify the number of items to skip in the response.
    take Double
    A filter to specify the number of items to take (or return) in the response.
    tenantTags List<String>
    A filter to search by a list of tenant tags.
    tenants List<String>
    A filter to search by a list of tenant IDs.
    thumbprint String
    The thumbprint of the deployment target to match in the query and/or search
    cloudRegionDeploymentTargets GetCloudRegionDeploymentTargetsCloudRegionDeploymentTarget[]
    A list of cloud region deployment targets that match the filter(s).
    id string
    An auto-generated identifier that includes the timestamp when this data source was last modified.
    spaceId string
    The space ID associated with this resource.
    deploymentId string
    A filter to search by deployment ID.
    environments string[]
    A filter to search by a list of environment IDs.
    healthStatuses string[]
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids string[]
    A filter to search by a list of IDs.
    isDisabled boolean
    A filter to search by the disabled status of a resource.
    name string
    A filter to search by name.
    partialName string
    A filter to search by the partial match of a name.
    roles string[]
    A filter to search by a list of role IDs.
    shellNames string[]
    A list of shell names to match in the query and/or search
    skip number
    A filter to specify the number of items to skip in the response.
    take number
    A filter to specify the number of items to take (or return) in the response.
    tenantTags string[]
    A filter to search by a list of tenant tags.
    tenants string[]
    A filter to search by a list of tenant IDs.
    thumbprint string
    The thumbprint of the deployment target to match in the query and/or search
    cloud_region_deployment_targets Sequence[GetCloudRegionDeploymentTargetsCloudRegionDeploymentTarget]
    A list of cloud region deployment targets that match the filter(s).
    id str
    An auto-generated identifier that includes the timestamp when this data source was last modified.
    space_id str
    The space ID associated with this resource.
    deployment_id str
    A filter to search by deployment ID.
    environments Sequence[str]
    A filter to search by a list of environment IDs.
    health_statuses Sequence[str]
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids Sequence[str]
    A filter to search by a list of IDs.
    is_disabled bool
    A filter to search by the disabled status of a resource.
    name str
    A filter to search by name.
    partial_name str
    A filter to search by the partial match of a name.
    roles Sequence[str]
    A filter to search by a list of role IDs.
    shell_names Sequence[str]
    A list of shell names to match in the query and/or search
    skip float
    A filter to specify the number of items to skip in the response.
    take float
    A filter to specify the number of items to take (or return) in the response.
    tenant_tags Sequence[str]
    A filter to search by a list of tenant tags.
    tenants Sequence[str]
    A filter to search by a list of tenant IDs.
    thumbprint str
    The thumbprint of the deployment target to match in the query and/or search
    cloudRegionDeploymentTargets List<Property Map>
    A list of cloud region deployment targets that match the filter(s).
    id String
    An auto-generated identifier that includes the timestamp when this data source was last modified.
    spaceId String
    The space ID associated with this resource.
    deploymentId String
    A filter to search by deployment ID.
    environments List<String>
    A filter to search by a list of environment IDs.
    healthStatuses List<String>
    A filter to search by a list of health statuses of resources. Valid health statuses are HasWarnings, Healthy, Unavailable, Unhealthy, or Unknown.
    ids List<String>
    A filter to search by a list of IDs.
    isDisabled Boolean
    A filter to search by the disabled status of a resource.
    name String
    A filter to search by name.
    partialName String
    A filter to search by the partial match of a name.
    roles List<String>
    A filter to search by a list of role IDs.
    shellNames List<String>
    A list of shell names to match in the query and/or search
    skip Number
    A filter to specify the number of items to skip in the response.
    take Number
    A filter to specify the number of items to take (or return) in the response.
    tenantTags List<String>
    A filter to search by a list of tenant tags.
    tenants List<String>
    A filter to search by a list of tenant IDs.
    thumbprint String
    The thumbprint of the deployment target to match in the query and/or search

    Supporting Types

    GetCloudRegionDeploymentTargetsCloudRegionDeploymentTarget

    defaultWorkerPoolId String
    endpoints List<Property Map>
    environments List<String>
    hasLatestCalamari Boolean
    healthStatus String
    id String
    isDisabled Boolean
    isInProcess Boolean
    machinePolicyId String
    name String
    operatingSystem String
    roles List<String>
    shellName String
    shellVersion String
    spaceId String
    status String
    statusSummary String
    tenantTags List<String>
    tenantedDeploymentParticipation String
    tenants List<String>
    thumbprint String
    uri String

    GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpoint

    AadClientCredentialSecret string
    AadCredentialType string
    AadUserCredentialUsername string
    AccountId string
    ApplicationsDirectory string
    Authentications List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointAuthentication>
    CertificateSignatureAlgorithm string
    CertificateStoreLocation string
    CertificateStoreName string
    ClientCertificateVariable string
    CloudServiceName string
    ClusterCertificate string
    ClusterCertificatePath string
    ClusterUrl string
    CommunicationStyle string
    ConnectionEndpoint string
    ContainerOptions string
    Containers List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointContainer>
    DefaultWorkerPoolId string
    Destinations List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointDestination>
    DotNetCorePlatform string
    Fingerprint string
    Host string
    Id string
    Namespace string
    Port double
    ProxyId string
    ResourceGroupName string
    RunningInContainer bool
    SecurityMode string
    ServerCertificateThumbprint string
    SkipTlsVerification bool
    Slot string
    StorageAccountName string
    SwapIfPossible bool
    TentacleVersionDetails List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointTentacleVersionDetail>
    Thumbprint string
    Uri string
    UseCurrentInstanceCount bool
    WebAppName string
    WebAppSlotName string
    WorkingDirectory string
    AadClientCredentialSecret string
    AadCredentialType string
    AadUserCredentialUsername string
    AccountId string
    ApplicationsDirectory string
    Authentications []GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointAuthentication
    CertificateSignatureAlgorithm string
    CertificateStoreLocation string
    CertificateStoreName string
    ClientCertificateVariable string
    CloudServiceName string
    ClusterCertificate string
    ClusterCertificatePath string
    ClusterUrl string
    CommunicationStyle string
    ConnectionEndpoint string
    ContainerOptions string
    Containers []GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointContainer
    DefaultWorkerPoolId string
    Destinations []GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointDestination
    DotNetCorePlatform string
    Fingerprint string
    Host string
    Id string
    Namespace string
    Port float64
    ProxyId string
    ResourceGroupName string
    RunningInContainer bool
    SecurityMode string
    ServerCertificateThumbprint string
    SkipTlsVerification bool
    Slot string
    StorageAccountName string
    SwapIfPossible bool
    TentacleVersionDetails []GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointTentacleVersionDetail
    Thumbprint string
    Uri string
    UseCurrentInstanceCount bool
    WebAppName string
    WebAppSlotName string
    WorkingDirectory string
    aadClientCredentialSecret String
    aadCredentialType String
    aadUserCredentialUsername String
    accountId String
    applicationsDirectory String
    authentications List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointAuthentication>
    certificateSignatureAlgorithm String
    certificateStoreLocation String
    certificateStoreName String
    clientCertificateVariable String
    cloudServiceName String
    clusterCertificate String
    clusterCertificatePath String
    clusterUrl String
    communicationStyle String
    connectionEndpoint String
    containerOptions String
    containers List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointContainer>
    defaultWorkerPoolId String
    destinations List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointDestination>
    dotNetCorePlatform String
    fingerprint String
    host String
    id String
    namespace String
    port Double
    proxyId String
    resourceGroupName String
    runningInContainer Boolean
    securityMode String
    serverCertificateThumbprint String
    skipTlsVerification Boolean
    slot String
    storageAccountName String
    swapIfPossible Boolean
    tentacleVersionDetails List<GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointTentacleVersionDetail>
    thumbprint String
    uri String
    useCurrentInstanceCount Boolean
    webAppName String
    webAppSlotName String
    workingDirectory String
    aadClientCredentialSecret string
    aadCredentialType string
    aadUserCredentialUsername string
    accountId string
    applicationsDirectory string
    authentications GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointAuthentication[]
    certificateSignatureAlgorithm string
    certificateStoreLocation string
    certificateStoreName string
    clientCertificateVariable string
    cloudServiceName string
    clusterCertificate string
    clusterCertificatePath string
    clusterUrl string
    communicationStyle string
    connectionEndpoint string
    containerOptions string
    containers GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointContainer[]
    defaultWorkerPoolId string
    destinations GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointDestination[]
    dotNetCorePlatform string
    fingerprint string
    host string
    id string
    namespace string
    port number
    proxyId string
    resourceGroupName string
    runningInContainer boolean
    securityMode string
    serverCertificateThumbprint string
    skipTlsVerification boolean
    slot string
    storageAccountName string
    swapIfPossible boolean
    tentacleVersionDetails GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointTentacleVersionDetail[]
    thumbprint string
    uri string
    useCurrentInstanceCount boolean
    webAppName string
    webAppSlotName string
    workingDirectory string
    aad_client_credential_secret str
    aad_credential_type str
    aad_user_credential_username str
    account_id str
    applications_directory str
    authentications Sequence[GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointAuthentication]
    certificate_signature_algorithm str
    certificate_store_location str
    certificate_store_name str
    client_certificate_variable str
    cloud_service_name str
    cluster_certificate str
    cluster_certificate_path str
    cluster_url str
    communication_style str
    connection_endpoint str
    container_options str
    containers Sequence[GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointContainer]
    default_worker_pool_id str
    destinations Sequence[GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointDestination]
    dot_net_core_platform str
    fingerprint str
    host str
    id str
    namespace str
    port float
    proxy_id str
    resource_group_name str
    running_in_container bool
    security_mode str
    server_certificate_thumbprint str
    skip_tls_verification bool
    slot str
    storage_account_name str
    swap_if_possible bool
    tentacle_version_details Sequence[GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointTentacleVersionDetail]
    thumbprint str
    uri str
    use_current_instance_count bool
    web_app_name str
    web_app_slot_name str
    working_directory str
    aadClientCredentialSecret String
    aadCredentialType String
    aadUserCredentialUsername String
    accountId String
    applicationsDirectory String
    authentications List<Property Map>
    certificateSignatureAlgorithm String
    certificateStoreLocation String
    certificateStoreName String
    clientCertificateVariable String
    cloudServiceName String
    clusterCertificate String
    clusterCertificatePath String
    clusterUrl String
    communicationStyle String
    connectionEndpoint String
    containerOptions String
    containers List<Property Map>
    defaultWorkerPoolId String
    destinations List<Property Map>
    dotNetCorePlatform String
    fingerprint String
    host String
    id String
    namespace String
    port Number
    proxyId String
    resourceGroupName String
    runningInContainer Boolean
    securityMode String
    serverCertificateThumbprint String
    skipTlsVerification Boolean
    slot String
    storageAccountName String
    swapIfPossible Boolean
    tentacleVersionDetails List<Property Map>
    thumbprint String
    uri String
    useCurrentInstanceCount Boolean
    webAppName String
    webAppSlotName String
    workingDirectory String

    GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointAuthentication

    GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointContainer

    FeedId string
    Image string
    FeedId string
    Image string
    feedId String
    image String
    feedId string
    image string
    feed_id str
    image str
    feedId String
    image String

    GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointDestination

    GetCloudRegionDeploymentTargetsCloudRegionDeploymentTargetEndpointTentacleVersionDetail

    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