1. Packages
  2. Octopusdeploy Provider
  3. API Docs
  4. AzureOpenidConnect
octopusdeploy 0.43.0 published on Thursday, Apr 17, 2025 by octopusdeploylabs

octopusdeploy.AzureOpenidConnect

Explore with Pulumi AI

This resource manages Azure OpenID Connect accounts in Octopus Deploy.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as octopusdeploy from "@pulumi/octopusdeploy";

const example = new octopusdeploy.AzureOpenidConnect("example", {
    accountTestSubjectKeys: [
        "space",
        "type",
    ],
    applicationId: "00000000-0000-0000-0000-000000000000",
    audience: "api://AzureADTokenExchange",
    executionSubjectKeys: [
        "space",
        "project",
    ],
    healthSubjectKeys: [
        "space",
        "target",
        "type",
    ],
    subscriptionId: "00000000-0000-0000-0000-000000000000",
    tenantId: "00000000-0000-0000-0000-000000000000",
});
Copy
import pulumi
import pulumi_octopusdeploy as octopusdeploy

example = octopusdeploy.AzureOpenidConnect("example",
    account_test_subject_keys=[
        "space",
        "type",
    ],
    application_id="00000000-0000-0000-0000-000000000000",
    audience="api://AzureADTokenExchange",
    execution_subject_keys=[
        "space",
        "project",
    ],
    health_subject_keys=[
        "space",
        "target",
        "type",
    ],
    subscription_id="00000000-0000-0000-0000-000000000000",
    tenant_id="00000000-0000-0000-0000-000000000000")
Copy
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.NewAzureOpenidConnect(ctx, "example", &octopusdeploy.AzureOpenidConnectArgs{
			AccountTestSubjectKeys: pulumi.StringArray{
				pulumi.String("space"),
				pulumi.String("type"),
			},
			ApplicationId: pulumi.String("00000000-0000-0000-0000-000000000000"),
			Audience:      pulumi.String("api://AzureADTokenExchange"),
			ExecutionSubjectKeys: pulumi.StringArray{
				pulumi.String("space"),
				pulumi.String("project"),
			},
			HealthSubjectKeys: pulumi.StringArray{
				pulumi.String("space"),
				pulumi.String("target"),
				pulumi.String("type"),
			},
			SubscriptionId: pulumi.String("00000000-0000-0000-0000-000000000000"),
			TenantId:       pulumi.String("00000000-0000-0000-0000-000000000000"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Octopusdeploy = Pulumi.Octopusdeploy;

return await Deployment.RunAsync(() => 
{
    var example = new Octopusdeploy.AzureOpenidConnect("example", new()
    {
        AccountTestSubjectKeys = new[]
        {
            "space",
            "type",
        },
        ApplicationId = "00000000-0000-0000-0000-000000000000",
        Audience = "api://AzureADTokenExchange",
        ExecutionSubjectKeys = new[]
        {
            "space",
            "project",
        },
        HealthSubjectKeys = new[]
        {
            "space",
            "target",
            "type",
        },
        SubscriptionId = "00000000-0000-0000-0000-000000000000",
        TenantId = "00000000-0000-0000-0000-000000000000",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.octopusdeploy.AzureOpenidConnect;
import com.pulumi.octopusdeploy.AzureOpenidConnectArgs;
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 AzureOpenidConnect("example", AzureOpenidConnectArgs.builder()
            .accountTestSubjectKeys(            
                "space",
                "type")
            .applicationId("00000000-0000-0000-0000-000000000000")
            .audience("api://AzureADTokenExchange")
            .executionSubjectKeys(            
                "space",
                "project")
            .healthSubjectKeys(            
                "space",
                "target",
                "type")
            .subscriptionId("00000000-0000-0000-0000-000000000000")
            .tenantId("00000000-0000-0000-0000-000000000000")
            .build());

    }
}
Copy
resources:
  example:
    type: octopusdeploy:AzureOpenidConnect
    properties:
      accountTestSubjectKeys:
        - space
        - type
      applicationId: 00000000-0000-0000-0000-000000000000
      audience: api://AzureADTokenExchange
      executionSubjectKeys:
        - space
        - project
      healthSubjectKeys:
        - space
        - target
        - type
      subscriptionId: 00000000-0000-0000-0000-000000000000
      tenantId: 00000000-0000-0000-0000-000000000000
Copy

Create AzureOpenidConnect Resource

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

Constructor syntax

new AzureOpenidConnect(name: string, args: AzureOpenidConnectArgs, opts?: CustomResourceOptions);
@overload
def AzureOpenidConnect(resource_name: str,
                       args: AzureOpenidConnectArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def AzureOpenidConnect(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       subscription_id: Optional[str] = None,
                       application_id: Optional[str] = None,
                       tenant_id: Optional[str] = None,
                       execution_subject_keys: Optional[Sequence[str]] = None,
                       name: Optional[str] = None,
                       azure_openid_connect_id: Optional[str] = None,
                       description: Optional[str] = None,
                       environments: Optional[Sequence[str]] = None,
                       account_test_subject_keys: Optional[Sequence[str]] = None,
                       health_subject_keys: Optional[Sequence[str]] = None,
                       azure_environment: Optional[str] = None,
                       resource_manager_endpoint: Optional[str] = None,
                       space_id: Optional[str] = None,
                       authentication_endpoint: Optional[str] = None,
                       audience: Optional[str] = None,
                       tenant_tags: Optional[Sequence[str]] = None,
                       tenanted_deployment_participation: Optional[str] = None,
                       tenants: Optional[Sequence[str]] = None)
func NewAzureOpenidConnect(ctx *Context, name string, args AzureOpenidConnectArgs, opts ...ResourceOption) (*AzureOpenidConnect, error)
public AzureOpenidConnect(string name, AzureOpenidConnectArgs args, CustomResourceOptions? opts = null)
public AzureOpenidConnect(String name, AzureOpenidConnectArgs args)
public AzureOpenidConnect(String name, AzureOpenidConnectArgs args, CustomResourceOptions options)
type: octopusdeploy:AzureOpenidConnect
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AzureOpenidConnectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AzureOpenidConnectArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AzureOpenidConnectArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AzureOpenidConnectArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AzureOpenidConnectArgs
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 azureOpenidConnectResource = new Octopusdeploy.AzureOpenidConnect("azureOpenidConnectResource", new()
{
    SubscriptionId = "string",
    ApplicationId = "string",
    TenantId = "string",
    ExecutionSubjectKeys = new[]
    {
        "string",
    },
    Name = "string",
    AzureOpenidConnectId = "string",
    Description = "string",
    Environments = new[]
    {
        "string",
    },
    AccountTestSubjectKeys = new[]
    {
        "string",
    },
    HealthSubjectKeys = new[]
    {
        "string",
    },
    AzureEnvironment = "string",
    ResourceManagerEndpoint = "string",
    SpaceId = "string",
    AuthenticationEndpoint = "string",
    Audience = "string",
    TenantTags = new[]
    {
        "string",
    },
    TenantedDeploymentParticipation = "string",
    Tenants = new[]
    {
        "string",
    },
});
Copy
example, err := octopusdeploy.NewAzureOpenidConnect(ctx, "azureOpenidConnectResource", &octopusdeploy.AzureOpenidConnectArgs{
SubscriptionId: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
TenantId: pulumi.String("string"),
ExecutionSubjectKeys: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
AzureOpenidConnectId: pulumi.String("string"),
Description: pulumi.String("string"),
Environments: pulumi.StringArray{
pulumi.String("string"),
},
AccountTestSubjectKeys: pulumi.StringArray{
pulumi.String("string"),
},
HealthSubjectKeys: pulumi.StringArray{
pulumi.String("string"),
},
AzureEnvironment: pulumi.String("string"),
ResourceManagerEndpoint: pulumi.String("string"),
SpaceId: pulumi.String("string"),
AuthenticationEndpoint: pulumi.String("string"),
Audience: pulumi.String("string"),
TenantTags: pulumi.StringArray{
pulumi.String("string"),
},
TenantedDeploymentParticipation: pulumi.String("string"),
Tenants: pulumi.StringArray{
pulumi.String("string"),
},
})
Copy
var azureOpenidConnectResource = new AzureOpenidConnect("azureOpenidConnectResource", AzureOpenidConnectArgs.builder()
    .subscriptionId("string")
    .applicationId("string")
    .tenantId("string")
    .executionSubjectKeys("string")
    .name("string")
    .azureOpenidConnectId("string")
    .description("string")
    .environments("string")
    .accountTestSubjectKeys("string")
    .healthSubjectKeys("string")
    .azureEnvironment("string")
    .resourceManagerEndpoint("string")
    .spaceId("string")
    .authenticationEndpoint("string")
    .audience("string")
    .tenantTags("string")
    .tenantedDeploymentParticipation("string")
    .tenants("string")
    .build());
Copy
azure_openid_connect_resource = octopusdeploy.AzureOpenidConnect("azureOpenidConnectResource",
    subscription_id="string",
    application_id="string",
    tenant_id="string",
    execution_subject_keys=["string"],
    name="string",
    azure_openid_connect_id="string",
    description="string",
    environments=["string"],
    account_test_subject_keys=["string"],
    health_subject_keys=["string"],
    azure_environment="string",
    resource_manager_endpoint="string",
    space_id="string",
    authentication_endpoint="string",
    audience="string",
    tenant_tags=["string"],
    tenanted_deployment_participation="string",
    tenants=["string"])
Copy
const azureOpenidConnectResource = new octopusdeploy.AzureOpenidConnect("azureOpenidConnectResource", {
    subscriptionId: "string",
    applicationId: "string",
    tenantId: "string",
    executionSubjectKeys: ["string"],
    name: "string",
    azureOpenidConnectId: "string",
    description: "string",
    environments: ["string"],
    accountTestSubjectKeys: ["string"],
    healthSubjectKeys: ["string"],
    azureEnvironment: "string",
    resourceManagerEndpoint: "string",
    spaceId: "string",
    authenticationEndpoint: "string",
    audience: "string",
    tenantTags: ["string"],
    tenantedDeploymentParticipation: "string",
    tenants: ["string"],
});
Copy
type: octopusdeploy:AzureOpenidConnect
properties:
    accountTestSubjectKeys:
        - string
    applicationId: string
    audience: string
    authenticationEndpoint: string
    azureEnvironment: string
    azureOpenidConnectId: string
    description: string
    environments:
        - string
    executionSubjectKeys:
        - string
    healthSubjectKeys:
        - string
    name: string
    resourceManagerEndpoint: string
    spaceId: string
    subscriptionId: string
    tenantId: string
    tenantTags:
        - string
    tenantedDeploymentParticipation: string
    tenants:
        - string
Copy

AzureOpenidConnect 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 AzureOpenidConnect resource accepts the following input properties:

ApplicationId This property is required. string
The application ID of this resource.
SubscriptionId This property is required. string
The subscription ID of this resource.
TenantId This property is required. string
The tenant ID of this resource.
AccountTestSubjectKeys List<string>
Keys to include in an account test. Valid options are: space, account, type
Audience string
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
AuthenticationEndpoint string
The authentication endpoint URI for this resource.
AzureEnvironment string
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
AzureOpenidConnectId string
The unique ID for this resource.
Description string
The description of this Azure OpenID Connect account.
Environments List<string>
A list of environment IDs associated with this resource.
ExecutionSubjectKeys List<string>
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
HealthSubjectKeys List<string>
Keys to include in a health check. Valid options are space, account, target, type
Name string
The name of this resource.
ResourceManagerEndpoint string
The resource manager endpoint URI for this resource.
SpaceId string
The space ID associated with this resource.
TenantTags List<string>
A list of tenant tags associated with this resource.
TenantedDeploymentParticipation string
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
Tenants List<string>
A list of tenant IDs associated with this resource.
ApplicationId This property is required. string
The application ID of this resource.
SubscriptionId This property is required. string
The subscription ID of this resource.
TenantId This property is required. string
The tenant ID of this resource.
AccountTestSubjectKeys []string
Keys to include in an account test. Valid options are: space, account, type
Audience string
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
AuthenticationEndpoint string
The authentication endpoint URI for this resource.
AzureEnvironment string
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
AzureOpenidConnectId string
The unique ID for this resource.
Description string
The description of this Azure OpenID Connect account.
Environments []string
A list of environment IDs associated with this resource.
ExecutionSubjectKeys []string
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
HealthSubjectKeys []string
Keys to include in a health check. Valid options are space, account, target, type
Name string
The name of this resource.
ResourceManagerEndpoint string
The resource manager endpoint URI for this resource.
SpaceId string
The space ID associated with this resource.
TenantTags []string
A list of tenant tags associated with this resource.
TenantedDeploymentParticipation string
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
Tenants []string
A list of tenant IDs associated with this resource.
applicationId This property is required. String
The application ID of this resource.
subscriptionId This property is required. String
The subscription ID of this resource.
tenantId This property is required. String
The tenant ID of this resource.
accountTestSubjectKeys List<String>
Keys to include in an account test. Valid options are: space, account, type
audience String
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authenticationEndpoint String
The authentication endpoint URI for this resource.
azureEnvironment String
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azureOpenidConnectId String
The unique ID for this resource.
description String
The description of this Azure OpenID Connect account.
environments List<String>
A list of environment IDs associated with this resource.
executionSubjectKeys List<String>
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
healthSubjectKeys List<String>
Keys to include in a health check. Valid options are space, account, target, type
name String
The name of this resource.
resourceManagerEndpoint String
The resource manager endpoint URI for this resource.
spaceId String
The space ID associated with this resource.
tenantTags List<String>
A list of tenant tags associated with this resource.
tenantedDeploymentParticipation String
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants List<String>
A list of tenant IDs associated with this resource.
applicationId This property is required. string
The application ID of this resource.
subscriptionId This property is required. string
The subscription ID of this resource.
tenantId This property is required. string
The tenant ID of this resource.
accountTestSubjectKeys string[]
Keys to include in an account test. Valid options are: space, account, type
audience string
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authenticationEndpoint string
The authentication endpoint URI for this resource.
azureEnvironment string
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azureOpenidConnectId string
The unique ID for this resource.
description string
The description of this Azure OpenID Connect account.
environments string[]
A list of environment IDs associated with this resource.
executionSubjectKeys string[]
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
healthSubjectKeys string[]
Keys to include in a health check. Valid options are space, account, target, type
name string
The name of this resource.
resourceManagerEndpoint string
The resource manager endpoint URI for this resource.
spaceId string
The space ID associated with this resource.
tenantTags string[]
A list of tenant tags associated with this resource.
tenantedDeploymentParticipation string
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants string[]
A list of tenant IDs associated with this resource.
application_id This property is required. str
The application ID of this resource.
subscription_id This property is required. str
The subscription ID of this resource.
tenant_id This property is required. str
The tenant ID of this resource.
account_test_subject_keys Sequence[str]
Keys to include in an account test. Valid options are: space, account, type
audience str
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authentication_endpoint str
The authentication endpoint URI for this resource.
azure_environment str
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azure_openid_connect_id str
The unique ID for this resource.
description str
The description of this Azure OpenID Connect account.
environments Sequence[str]
A list of environment IDs associated with this resource.
execution_subject_keys Sequence[str]
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
health_subject_keys Sequence[str]
Keys to include in a health check. Valid options are space, account, target, type
name str
The name of this resource.
resource_manager_endpoint str
The resource manager endpoint URI for this resource.
space_id str
The space ID associated with this resource.
tenant_tags Sequence[str]
A list of tenant tags associated with this resource.
tenanted_deployment_participation str
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants Sequence[str]
A list of tenant IDs associated with this resource.
applicationId This property is required. String
The application ID of this resource.
subscriptionId This property is required. String
The subscription ID of this resource.
tenantId This property is required. String
The tenant ID of this resource.
accountTestSubjectKeys List<String>
Keys to include in an account test. Valid options are: space, account, type
audience String
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authenticationEndpoint String
The authentication endpoint URI for this resource.
azureEnvironment String
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azureOpenidConnectId String
The unique ID for this resource.
description String
The description of this Azure OpenID Connect account.
environments List<String>
A list of environment IDs associated with this resource.
executionSubjectKeys List<String>
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
healthSubjectKeys List<String>
Keys to include in a health check. Valid options are space, account, target, type
name String
The name of this resource.
resourceManagerEndpoint String
The resource manager endpoint URI for this resource.
spaceId String
The space ID associated with this resource.
tenantTags List<String>
A list of tenant tags associated with this resource.
tenantedDeploymentParticipation String
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants List<String>
A list of tenant IDs associated with this resource.

Outputs

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

Get an existing AzureOpenidConnect 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?: AzureOpenidConnectState, opts?: CustomResourceOptions): AzureOpenidConnect
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_test_subject_keys: Optional[Sequence[str]] = None,
        application_id: Optional[str] = None,
        audience: Optional[str] = None,
        authentication_endpoint: Optional[str] = None,
        azure_environment: Optional[str] = None,
        azure_openid_connect_id: Optional[str] = None,
        description: Optional[str] = None,
        environments: Optional[Sequence[str]] = None,
        execution_subject_keys: Optional[Sequence[str]] = None,
        health_subject_keys: Optional[Sequence[str]] = None,
        name: 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) -> AzureOpenidConnect
func GetAzureOpenidConnect(ctx *Context, name string, id IDInput, state *AzureOpenidConnectState, opts ...ResourceOption) (*AzureOpenidConnect, error)
public static AzureOpenidConnect Get(string name, Input<string> id, AzureOpenidConnectState? state, CustomResourceOptions? opts = null)
public static AzureOpenidConnect get(String name, Output<String> id, AzureOpenidConnectState state, CustomResourceOptions options)
resources:  _:    type: octopusdeploy:AzureOpenidConnect    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccountTestSubjectKeys List<string>
Keys to include in an account test. Valid options are: space, account, type
ApplicationId string
The application ID of this resource.
Audience string
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
AuthenticationEndpoint string
The authentication endpoint URI for this resource.
AzureEnvironment string
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
AzureOpenidConnectId string
The unique ID for this resource.
Description string
The description of this Azure OpenID Connect account.
Environments List<string>
A list of environment IDs associated with this resource.
ExecutionSubjectKeys List<string>
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
HealthSubjectKeys List<string>
Keys to include in a health check. Valid options are space, account, target, type
Name string
The name of this resource.
ResourceManagerEndpoint string
The resource manager endpoint URI for this resource.
SpaceId string
The space ID associated with this resource.
SubscriptionId string
The subscription ID of this resource.
TenantId string
The tenant ID of this resource.
TenantTags List<string>
A list of tenant tags associated with this resource.
TenantedDeploymentParticipation string
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
Tenants List<string>
A list of tenant IDs associated with this resource.
AccountTestSubjectKeys []string
Keys to include in an account test. Valid options are: space, account, type
ApplicationId string
The application ID of this resource.
Audience string
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
AuthenticationEndpoint string
The authentication endpoint URI for this resource.
AzureEnvironment string
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
AzureOpenidConnectId string
The unique ID for this resource.
Description string
The description of this Azure OpenID Connect account.
Environments []string
A list of environment IDs associated with this resource.
ExecutionSubjectKeys []string
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
HealthSubjectKeys []string
Keys to include in a health check. Valid options are space, account, target, type
Name string
The name of this resource.
ResourceManagerEndpoint string
The resource manager endpoint URI for this resource.
SpaceId string
The space ID associated with this resource.
SubscriptionId string
The subscription ID of this resource.
TenantId string
The tenant ID of this resource.
TenantTags []string
A list of tenant tags associated with this resource.
TenantedDeploymentParticipation string
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
Tenants []string
A list of tenant IDs associated with this resource.
accountTestSubjectKeys List<String>
Keys to include in an account test. Valid options are: space, account, type
applicationId String
The application ID of this resource.
audience String
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authenticationEndpoint String
The authentication endpoint URI for this resource.
azureEnvironment String
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azureOpenidConnectId String
The unique ID for this resource.
description String
The description of this Azure OpenID Connect account.
environments List<String>
A list of environment IDs associated with this resource.
executionSubjectKeys List<String>
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
healthSubjectKeys List<String>
Keys to include in a health check. Valid options are space, account, target, type
name String
The name of this resource.
resourceManagerEndpoint String
The resource manager endpoint URI for this resource.
spaceId String
The space ID associated with this resource.
subscriptionId String
The subscription ID of this resource.
tenantId String
The tenant ID of this resource.
tenantTags List<String>
A list of tenant tags associated with this resource.
tenantedDeploymentParticipation String
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants List<String>
A list of tenant IDs associated with this resource.
accountTestSubjectKeys string[]
Keys to include in an account test. Valid options are: space, account, type
applicationId string
The application ID of this resource.
audience string
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authenticationEndpoint string
The authentication endpoint URI for this resource.
azureEnvironment string
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azureOpenidConnectId string
The unique ID for this resource.
description string
The description of this Azure OpenID Connect account.
environments string[]
A list of environment IDs associated with this resource.
executionSubjectKeys string[]
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
healthSubjectKeys string[]
Keys to include in a health check. Valid options are space, account, target, type
name string
The name of this resource.
resourceManagerEndpoint string
The resource manager endpoint URI for this resource.
spaceId string
The space ID associated with this resource.
subscriptionId string
The subscription ID of this resource.
tenantId string
The tenant ID of this resource.
tenantTags string[]
A list of tenant tags associated with this resource.
tenantedDeploymentParticipation string
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants string[]
A list of tenant IDs associated with this resource.
account_test_subject_keys Sequence[str]
Keys to include in an account test. Valid options are: space, account, type
application_id str
The application ID of this resource.
audience str
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authentication_endpoint str
The authentication endpoint URI for this resource.
azure_environment str
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azure_openid_connect_id str
The unique ID for this resource.
description str
The description of this Azure OpenID Connect account.
environments Sequence[str]
A list of environment IDs associated with this resource.
execution_subject_keys Sequence[str]
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
health_subject_keys Sequence[str]
Keys to include in a health check. Valid options are space, account, target, type
name str
The name of this resource.
resource_manager_endpoint str
The resource manager endpoint URI for this resource.
space_id str
The space ID associated with this resource.
subscription_id str
The subscription ID of this resource.
tenant_id str
The tenant ID of this resource.
tenant_tags Sequence[str]
A list of tenant tags associated with this resource.
tenanted_deployment_participation str
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants Sequence[str]
A list of tenant IDs associated with this resource.
accountTestSubjectKeys List<String>
Keys to include in an account test. Valid options are: space, account, type
applicationId String
The application ID of this resource.
audience String
Federated credentials audience, this value is used to establish a connection between external workload identities and Microsoft Entra ID.
authenticationEndpoint String
The authentication endpoint URI for this resource.
azureEnvironment String
The Azure environment associated with this resource. Valid Azure environments are AzureCloud, AzureChinaCloud, AzureGermanCloud, or AzureUSGovernment.
azureOpenidConnectId String
The unique ID for this resource.
description String
The description of this Azure OpenID Connect account.
environments List<String>
A list of environment IDs associated with this resource.
executionSubjectKeys List<String>
Keys to include in a deployment or runbook. Valid options are space, environment, project, tenant, runbook, account, type
healthSubjectKeys List<String>
Keys to include in a health check. Valid options are space, account, target, type
name String
The name of this resource.
resourceManagerEndpoint String
The resource manager endpoint URI for this resource.
spaceId String
The space ID associated with this resource.
subscriptionId String
The subscription ID of this resource.
tenantId String
The tenant ID of this resource.
tenantTags List<String>
A list of tenant tags associated with this resource.
tenantedDeploymentParticipation String
The tenanted deployment mode of the resource. Valid account types are Untenanted, TenantedOrUntenanted, or Tenanted.
tenants List<String>
A list of tenant IDs associated with this resource.

Import

$ pulumi import octopusdeploy:index/azureOpenidConnect:AzureOpenidConnect [options] octopusdeploy_azure_openid_connect.<name> <account-id>
Copy

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.