octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs
octopusdeploy.getAzureWebAppDeploymentTargets
Explore with Pulumi AI
octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs
Provides information about existing Azure web app deployment targets.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as octopusdeploy from "@pulumi/octopusdeploy";
const example = octopusdeploy.getAzureWebAppDeploymentTargets({
healthStatuses: [
"Healthy",
"Unavailable",
],
ids: [
"Machines-123",
"Machines-321",
],
partialName: "Defau",
skip: 5,
take: 100,
});
import pulumi
import pulumi_octopusdeploy as octopusdeploy
example = octopusdeploy.get_azure_web_app_deployment_targets(health_statuses=[
"Healthy",
"Unavailable",
],
ids=[
"Machines-123",
"Machines-321",
],
partial_name="Defau",
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.GetAzureWebAppDeploymentTargets(ctx, &octopusdeploy.GetAzureWebAppDeploymentTargetsArgs{
HealthStatuses: []string{
"Healthy",
"Unavailable",
},
Ids: []string{
"Machines-123",
"Machines-321",
},
PartialName: pulumi.StringRef("Defau"),
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.GetAzureWebAppDeploymentTargets.Invoke(new()
{
HealthStatuses = new[]
{
"Healthy",
"Unavailable",
},
Ids = new[]
{
"Machines-123",
"Machines-321",
},
PartialName = "Defau",
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.GetAzureWebAppDeploymentTargetsArgs;
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.getAzureWebAppDeploymentTargets(GetAzureWebAppDeploymentTargetsArgs.builder()
.healthStatuses(
"Healthy",
"Unavailable")
.ids(
"Machines-123",
"Machines-321")
.partialName("Defau")
.skip(5)
.take(100)
.build());
}
}
variables:
example:
fn::invoke:
function: octopusdeploy:getAzureWebAppDeploymentTargets
arguments:
healthStatuses:
- Healthy
- Unavailable
ids:
- Machines-123
- Machines-321
partialName: Defau
skip: 5
take: 100
Using getAzureWebAppDeploymentTargets
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 getAzureWebAppDeploymentTargets(args: GetAzureWebAppDeploymentTargetsArgs, opts?: InvokeOptions): Promise<GetAzureWebAppDeploymentTargetsResult>
function getAzureWebAppDeploymentTargetsOutput(args: GetAzureWebAppDeploymentTargetsOutputArgs, opts?: InvokeOptions): Output<GetAzureWebAppDeploymentTargetsResult>
def get_azure_web_app_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) -> GetAzureWebAppDeploymentTargetsResult
def get_azure_web_app_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[GetAzureWebAppDeploymentTargetsResult]
func GetAzureWebAppDeploymentTargets(ctx *Context, args *GetAzureWebAppDeploymentTargetsArgs, opts ...InvokeOption) (*GetAzureWebAppDeploymentTargetsResult, error)
func GetAzureWebAppDeploymentTargetsOutput(ctx *Context, args *GetAzureWebAppDeploymentTargetsOutputArgs, opts ...InvokeOption) GetAzureWebAppDeploymentTargetsResultOutput
> Note: This function is named GetAzureWebAppDeploymentTargets
in the Go SDK.
public static class GetAzureWebAppDeploymentTargets
{
public static Task<GetAzureWebAppDeploymentTargetsResult> InvokeAsync(GetAzureWebAppDeploymentTargetsArgs args, InvokeOptions? opts = null)
public static Output<GetAzureWebAppDeploymentTargetsResult> Invoke(GetAzureWebAppDeploymentTargetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAzureWebAppDeploymentTargetsResult> getAzureWebAppDeploymentTargets(GetAzureWebAppDeploymentTargetsArgs args, InvokeOptions options)
public static Output<GetAzureWebAppDeploymentTargetsResult> getAzureWebAppDeploymentTargets(GetAzureWebAppDeploymentTargetsArgs args, InvokeOptions options)
fn::invoke:
function: octopusdeploy:index/getAzureWebAppDeploymentTargets:getAzureWebAppDeploymentTargets
arguments:
# arguments dictionary
The following arguments are supported:
- Deployment
Id string - A filter to search by deployment ID.
- Environments List<string>
- A filter to search by a list of environment IDs.
- Health
Statuses List<string> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids List<string>
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name 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.
- Shell
Names 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.
- Space
Id 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.
- 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
- Deployment
Id string - A filter to search by deployment ID.
- Environments []string
- A filter to search by a list of environment IDs.
- Health
Statuses []string - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids []string
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name string - A filter to search by the partial match of a name.
- Roles []string
- A filter to search by a list of role IDs.
- Shell
Names []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.
- Space
Id 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.
- []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 String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- space
Id 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.
- 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
- deployment
Id string - A filter to search by deployment ID.
- environments string[]
- A filter to search by a list of environment IDs.
- health
Statuses string[] - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids string[]
- A filter to search by a list of IDs.
- is
Disabled boolean - A filter to search by the disabled status of a resource.
- name string
- A filter to search by name.
- partial
Name string - A filter to search by the partial match of a name.
- roles string[]
- A filter to search by a list of role IDs.
- shell
Names 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.
- space
Id 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.
- 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
, orUnknown
. - 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.
- 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
- deployment
Id String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- space
Id 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.
- 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
getAzureWebAppDeploymentTargets Result
The following output properties are available:
- Azure
Web List<GetApp Deployment Targets Azure Web App Deployment Targets Azure Web App Deployment Target> - A list of Azure web app deployment targets that match the filter(s).
- Id string
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- Space
Id string - The space ID associated with this resource.
- Deployment
Id string - A filter to search by deployment ID.
- Environments List<string>
- A filter to search by a list of environment IDs.
- Health
Statuses List<string> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids List<string>
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name 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.
- Shell
Names 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.
- 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
- Azure
Web []GetApp Deployment Targets Azure Web App Deployment Targets Azure Web App Deployment Target - A list of Azure web app deployment targets that match the filter(s).
- Id string
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- Space
Id string - The space ID associated with this resource.
- Deployment
Id string - A filter to search by deployment ID.
- Environments []string
- A filter to search by a list of environment IDs.
- Health
Statuses []string - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - Ids []string
- A filter to search by a list of IDs.
- Is
Disabled bool - A filter to search by the disabled status of a resource.
- Name string
- A filter to search by name.
- Partial
Name string - A filter to search by the partial match of a name.
- Roles []string
- A filter to search by a list of role IDs.
- Shell
Names []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.
- []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
- azure
Web List<GetApp Deployment Targets Azure Web App Deployment Targets Azure Web App Deployment Target> - A list of Azure web app deployment targets that match the filter(s).
- id String
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- space
Id String - The space ID associated with this resource.
- deployment
Id String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- 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
- azure
Web GetApp Deployment Targets Azure Web App Deployment Targets Azure Web App Deployment Target[] - A list of Azure web app deployment targets that match the filter(s).
- id string
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- space
Id string - The space ID associated with this resource.
- deployment
Id string - A filter to search by deployment ID.
- environments string[]
- A filter to search by a list of environment IDs.
- health
Statuses string[] - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids string[]
- A filter to search by a list of IDs.
- is
Disabled boolean - A filter to search by the disabled status of a resource.
- name string
- A filter to search by name.
- partial
Name string - A filter to search by the partial match of a name.
- roles string[]
- A filter to search by a list of role IDs.
- shell
Names 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.
- 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
- azure_
web_ Sequence[Getapp_ deployment_ targets Azure Web App Deployment Targets Azure Web App Deployment Target] - A list of Azure web app 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
, orUnknown
. - 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.
- 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
- azure
Web List<Property Map>App Deployment Targets - A list of Azure web app deployment targets that match the filter(s).
- id String
- An auto-generated identifier that includes the timestamp when this data source was last modified.
- space
Id String - The space ID associated with this resource.
- deployment
Id String - A filter to search by deployment ID.
- environments List<String>
- A filter to search by a list of environment IDs.
- health
Statuses List<String> - A filter to search by a list of health statuses of resources. Valid health statuses are
HasWarnings
,Healthy
,Unavailable
,Unhealthy
, orUnknown
. - ids List<String>
- A filter to search by a list of IDs.
- is
Disabled Boolean - A filter to search by the disabled status of a resource.
- name String
- A filter to search by name.
- partial
Name 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.
- shell
Names 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.
- 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
GetAzureWebAppDeploymentTargetsAzureWebAppDeploymentTarget
- Account
Id string - Endpoints
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint> - Environments List<string>
- Has
Latest boolCalamari - Health
Status string - Id string
- Is
Disabled bool - Is
In boolProcess - Machine
Policy stringId - Name string
- Operating
System string - Resource
Group stringName - Roles List<string>
- Shell
Name string - Shell
Version string - Space
Id string - Status string
- Status
Summary string - List<string>
- Tenanted
Deployment stringParticipation - Tenants List<string>
- Thumbprint string
- Uri string
- Web
App stringName - Web
App stringSlot Name
- Account
Id string - Endpoints
[]Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint - Environments []string
- Has
Latest boolCalamari - Health
Status string - Id string
- Is
Disabled bool - Is
In boolProcess - Machine
Policy stringId - Name string
- Operating
System string - Resource
Group stringName - Roles []string
- Shell
Name string - Shell
Version string - Space
Id string - Status string
- Status
Summary string - []string
- Tenanted
Deployment stringParticipation - Tenants []string
- Thumbprint string
- Uri string
- Web
App stringName - Web
App stringSlot Name
- account
Id String - endpoints
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint> - environments List<String>
- has
Latest BooleanCalamari - health
Status String - id String
- is
Disabled Boolean - is
In BooleanProcess - machine
Policy StringId - name String
- operating
System String - resource
Group StringName - roles List<String>
- shell
Name String - shell
Version String - space
Id String - status String
- status
Summary String - List<String>
- tenanted
Deployment StringParticipation - tenants List<String>
- thumbprint String
- uri String
- web
App StringName - web
App StringSlot Name
- account
Id string - endpoints
Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint[] - environments string[]
- has
Latest booleanCalamari - health
Status string - id string
- is
Disabled boolean - is
In booleanProcess - machine
Policy stringId - name string
- operating
System string - resource
Group stringName - roles string[]
- shell
Name string - shell
Version string - space
Id string - status string
- status
Summary string - string[]
- tenanted
Deployment stringParticipation - tenants string[]
- thumbprint string
- uri string
- web
App stringName - web
App stringSlot Name
- account_
id str - endpoints
Sequence[Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint] - environments Sequence[str]
- has_
latest_ boolcalamari - health_
status str - id str
- is_
disabled bool - is_
in_ boolprocess - machine_
policy_ strid - name str
- operating_
system str - resource_
group_ strname - roles Sequence[str]
- shell_
name str - shell_
version str - space_
id str - status str
- status_
summary str - Sequence[str]
- tenanted_
deployment_ strparticipation - tenants Sequence[str]
- thumbprint str
- uri str
- web_
app_ strname - web_
app_ strslot_ name
- account
Id String - endpoints List<Property Map>
- environments List<String>
- has
Latest BooleanCalamari - health
Status String - id String
- is
Disabled Boolean - is
In BooleanProcess - machine
Policy StringId - name String
- operating
System String - resource
Group StringName - roles List<String>
- shell
Name String - shell
Version String - space
Id String - status String
- status
Summary String - List<String>
- tenanted
Deployment StringParticipation - tenants List<String>
- thumbprint String
- uri String
- web
App StringName - web
App StringSlot Name
GetAzureWebAppDeploymentTargetsAzureWebAppDeploymentTargetEndpoint
- Aad
Client stringCredential Secret - Aad
Credential stringType - Aad
User stringCredential Username - Account
Id string - Applications
Directory string - Authentications
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Authentication> - Certificate
Signature stringAlgorithm - Certificate
Store stringLocation - Certificate
Store stringName - Client
Certificate stringVariable - Cloud
Service stringName - Cluster
Certificate string - Cluster
Certificate stringPath - Cluster
Url string - Communication
Style string - Connection
Endpoint string - Container
Options string - Containers
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Container> - Default
Worker stringPool Id - Destinations
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Destination> - Dot
Net stringCore Platform - Fingerprint string
- Host string
- Id string
- Namespace string
- Port double
- Proxy
Id string - Resource
Group stringName - Running
In boolContainer - Security
Mode string - Server
Certificate stringThumbprint - Skip
Tls boolVerification - Slot string
- Storage
Account stringName - Swap
If boolPossible - Tentacle
Version List<GetDetails Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Tentacle Version Detail> - Thumbprint string
- Uri string
- Use
Current boolInstance Count - Web
App stringName - Web
App stringSlot Name - Working
Directory string
- Aad
Client stringCredential Secret - Aad
Credential stringType - Aad
User stringCredential Username - Account
Id string - Applications
Directory string - Authentications
[]Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Authentication - Certificate
Signature stringAlgorithm - Certificate
Store stringLocation - Certificate
Store stringName - Client
Certificate stringVariable - Cloud
Service stringName - Cluster
Certificate string - Cluster
Certificate stringPath - Cluster
Url string - Communication
Style string - Connection
Endpoint string - Container
Options string - Containers
[]Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Container - Default
Worker stringPool Id - Destinations
[]Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Destination - Dot
Net stringCore Platform - Fingerprint string
- Host string
- Id string
- Namespace string
- Port float64
- Proxy
Id string - Resource
Group stringName - Running
In boolContainer - Security
Mode string - Server
Certificate stringThumbprint - Skip
Tls boolVerification - Slot string
- Storage
Account stringName - Swap
If boolPossible - Tentacle
Version []GetDetails Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Tentacle Version Detail - Thumbprint string
- Uri string
- Use
Current boolInstance Count - Web
App stringName - Web
App stringSlot Name - Working
Directory string
- aad
Client StringCredential Secret - aad
Credential StringType - aad
User StringCredential Username - account
Id String - applications
Directory String - authentications
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Authentication> - certificate
Signature StringAlgorithm - certificate
Store StringLocation - certificate
Store StringName - client
Certificate StringVariable - cloud
Service StringName - cluster
Certificate String - cluster
Certificate StringPath - cluster
Url String - communication
Style String - connection
Endpoint String - container
Options String - containers
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Container> - default
Worker StringPool Id - destinations
List<Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Destination> - dot
Net StringCore Platform - fingerprint String
- host String
- id String
- namespace String
- port Double
- proxy
Id String - resource
Group StringName - running
In BooleanContainer - security
Mode String - server
Certificate StringThumbprint - skip
Tls BooleanVerification - slot String
- storage
Account StringName - swap
If BooleanPossible - tentacle
Version List<GetDetails Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Tentacle Version Detail> - thumbprint String
- uri String
- use
Current BooleanInstance Count - web
App StringName - web
App StringSlot Name - working
Directory String
- aad
Client stringCredential Secret - aad
Credential stringType - aad
User stringCredential Username - account
Id string - applications
Directory string - authentications
Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Authentication[] - certificate
Signature stringAlgorithm - certificate
Store stringLocation - certificate
Store stringName - client
Certificate stringVariable - cloud
Service stringName - cluster
Certificate string - cluster
Certificate stringPath - cluster
Url string - communication
Style string - connection
Endpoint string - container
Options string - containers
Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Container[] - default
Worker stringPool Id - destinations
Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Destination[] - dot
Net stringCore Platform - fingerprint string
- host string
- id string
- namespace string
- port number
- proxy
Id string - resource
Group stringName - running
In booleanContainer - security
Mode string - server
Certificate stringThumbprint - skip
Tls booleanVerification - slot string
- storage
Account stringName - swap
If booleanPossible - tentacle
Version GetDetails Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Tentacle Version Detail[] - thumbprint string
- uri string
- use
Current booleanInstance Count - web
App stringName - web
App stringSlot Name - working
Directory string
- aad_
client_ strcredential_ secret - aad_
credential_ strtype - aad_
user_ strcredential_ username - account_
id str - applications_
directory str - authentications
Sequence[Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Authentication] - certificate_
signature_ stralgorithm - certificate_
store_ strlocation - certificate_
store_ strname - client_
certificate_ strvariable - cloud_
service_ strname - cluster_
certificate str - cluster_
certificate_ strpath - cluster_
url str - communication_
style str - connection_
endpoint str - container_
options str - containers
Sequence[Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Container] - default_
worker_ strpool_ id - destinations
Sequence[Get
Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Destination] - dot_
net_ strcore_ platform - fingerprint str
- host str
- id str
- namespace str
- port float
- proxy_
id str - resource_
group_ strname - running_
in_ boolcontainer - security_
mode str - server_
certificate_ strthumbprint - skip_
tls_ boolverification - slot str
- storage_
account_ strname - swap_
if_ boolpossible - tentacle_
version_ Sequence[Getdetails Azure Web App Deployment Targets Azure Web App Deployment Target Endpoint Tentacle Version Detail] - thumbprint str
- uri str
- use_
current_ boolinstance_ count - web_
app_ strname - web_
app_ strslot_ name - working_
directory str
- aad
Client StringCredential Secret - aad
Credential StringType - aad
User StringCredential Username - account
Id String - applications
Directory String - authentications List<Property Map>
- certificate
Signature StringAlgorithm - certificate
Store StringLocation - certificate
Store StringName - client
Certificate StringVariable - cloud
Service StringName - cluster
Certificate String - cluster
Certificate StringPath - cluster
Url String - communication
Style String - connection
Endpoint String - container
Options String - containers List<Property Map>
- default
Worker StringPool Id - destinations List<Property Map>
- dot
Net StringCore Platform - fingerprint String
- host String
- id String
- namespace String
- port Number
- proxy
Id String - resource
Group StringName - running
In BooleanContainer - security
Mode String - server
Certificate StringThumbprint - skip
Tls BooleanVerification - slot String
- storage
Account StringName - swap
If BooleanPossible - tentacle
Version List<Property Map>Details - thumbprint String
- uri String
- use
Current BooleanInstance Count - web
App StringName - web
App StringSlot Name - working
Directory String
GetAzureWebAppDeploymentTargetsAzureWebAppDeploymentTargetEndpointAuthentication
- Account
Id string - Admin
Login string - Assume
Role bool - Assume
Role stringExternal Id - Assume
Role doubleSession Duration - Assumed
Role stringArn - Assumed
Role stringSession - Authentication
Type string - Client
Certificate string - Cluster
Name string - Cluster
Resource stringGroup - Impersonate
Service boolAccount - Project string
- Region string
- Service
Account stringEmails - Token
Path string - Use
Instance boolRole - Use
Vm boolService Account - Zone string
- Account
Id string - Admin
Login string - Assume
Role bool - Assume
Role stringExternal Id - Assume
Role float64Session Duration - Assumed
Role stringArn - Assumed
Role stringSession - Authentication
Type string - Client
Certificate string - Cluster
Name string - Cluster
Resource stringGroup - Impersonate
Service boolAccount - Project string
- Region string
- Service
Account stringEmails - Token
Path string - Use
Instance boolRole - Use
Vm boolService Account - Zone string
- account
Id String - admin
Login String - assume
Role Boolean - assume
Role StringExternal Id - assume
Role DoubleSession Duration - assumed
Role StringArn - assumed
Role StringSession - authentication
Type String - client
Certificate String - cluster
Name String - cluster
Resource StringGroup - impersonate
Service BooleanAccount - project String
- region String
- service
Account StringEmails - token
Path String - use
Instance BooleanRole - use
Vm BooleanService Account - zone String
- account
Id string - admin
Login string - assume
Role boolean - assume
Role stringExternal Id - assume
Role numberSession Duration - assumed
Role stringArn - assumed
Role stringSession - authentication
Type string - client
Certificate string - cluster
Name string - cluster
Resource stringGroup - impersonate
Service booleanAccount - project string
- region string
- service
Account stringEmails - token
Path string - use
Instance booleanRole - use
Vm booleanService Account - zone string
- account_
id str - admin_
login str - assume_
role bool - assume_
role_ strexternal_ id - assume_
role_ floatsession_ duration - assumed_
role_ strarn - assumed_
role_ strsession - authentication_
type str - client_
certificate str - cluster_
name str - cluster_
resource_ strgroup - impersonate_
service_ boolaccount - project str
- region str
- service_
account_ stremails - token_
path str - use_
instance_ boolrole - use_
vm_ boolservice_ account - zone str
- account
Id String - admin
Login String - assume
Role Boolean - assume
Role StringExternal Id - assume
Role NumberSession Duration - assumed
Role StringArn - assumed
Role StringSession - authentication
Type String - client
Certificate String - cluster
Name String - cluster
Resource StringGroup - impersonate
Service BooleanAccount - project String
- region String
- service
Account StringEmails - token
Path String - use
Instance BooleanRole - use
Vm BooleanService Account - zone String
GetAzureWebAppDeploymentTargetsAzureWebAppDeploymentTargetEndpointContainer
GetAzureWebAppDeploymentTargetsAzureWebAppDeploymentTargetEndpointDestination
- Destination
Type string - Drop
Folder stringPath
- Destination
Type string - Drop
Folder stringPath
- destination
Type String - drop
Folder StringPath
- destination
Type string - drop
Folder stringPath
- destination_
type str - drop_
folder_ strpath
- destination
Type String - drop
Folder StringPath
GetAzureWebAppDeploymentTargetsAzureWebAppDeploymentTargetEndpointTentacleVersionDetail
- Upgrade
Locked bool - Upgrade
Required bool - Upgrade
Suggested bool - Version string
- Upgrade
Locked bool - Upgrade
Required bool - Upgrade
Suggested bool - Version string
- upgrade
Locked Boolean - upgrade
Required Boolean - upgrade
Suggested Boolean - version String
- upgrade
Locked boolean - upgrade
Required boolean - upgrade
Suggested boolean - version string
- upgrade_
locked bool - upgrade_
required bool - upgrade_
suggested bool - version str
- upgrade
Locked Boolean - upgrade
Required Boolean - upgrade
Suggested Boolean - version String
Package Details
- Repository
- octopusdeploy octopusdeploylabs/terraform-provider-octopusdeploy
- License
- Notes
- This Pulumi package is based on the
octopusdeploy
Terraform Provider.
octopusdeploy 0.43.1 published on Wednesday, Apr 30, 2025 by octopusdeploylabs