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",
});
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")
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
})
}
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",
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args AzureOpenidConnectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args AzureOpenidConnectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AzureOpenidConnectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
});
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"),
},
})
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());
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"])
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"],
});
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
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:
- Application
Id string - The application ID of this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- Account
Test List<string>Subject Keys - 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.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Openid stringConnect Id - 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.
- Execution
Subject List<string>Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- Health
Subject List<string>Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- Name string
- The name of this resource.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- List<string>
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants List<string>
- A list of tenant IDs associated with this resource.
- Application
Id string - The application ID of this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- Account
Test []stringSubject Keys - 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.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Openid stringConnect Id - 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.
- Execution
Subject []stringKeys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- Health
Subject []stringKeys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- Name string
- The name of this resource.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- []string
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants []string
- A list of tenant IDs associated with this resource.
- application
Id String - The application ID of this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- account
Test List<String>Subject Keys - 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.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Openid StringConnect Id - 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.
- execution
Subject List<String>Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health
Subject List<String>Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name String
- The name of this resource.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants List<String>
- A list of tenant IDs associated with this resource.
- application
Id string - The application ID of this resource.
- subscription
Id string - The subscription ID of this resource.
- tenant
Id string - The tenant ID of this resource.
- account
Test string[]Subject Keys - 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.
- authentication
Endpoint string - The authentication endpoint URI for this resource.
- azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Openid stringConnect Id - 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.
- execution
Subject string[]Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health
Subject string[]Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name string
- The name of this resource.
- resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- space
Id string - The space ID associated with this resource.
- string[]
- A list of tenant tags associated with this resource.
- tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants string[]
- A list of tenant IDs associated with this resource.
- application_
id str - The application ID of this resource.
- subscription_
id str - The subscription ID of this resource.
- tenant_
id str - The tenant ID of this resource.
- account_
test_ Sequence[str]subject_ keys - 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
, orAzureUSGovernment
. - azure_
openid_ strconnect_ id - 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_ Sequence[str]keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health_
subject_ Sequence[str]keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name str
- The name of this resource.
- resource_
manager_ strendpoint - The resource manager endpoint URI for this resource.
- space_
id str - The space ID associated with this resource.
- Sequence[str]
- A list of tenant tags associated with this resource.
- tenanted_
deployment_ strparticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants Sequence[str]
- A list of tenant IDs associated with this resource.
- application
Id String - The application ID of this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- account
Test List<String>Subject Keys - 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.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Openid StringConnect Id - 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.
- execution
Subject List<String>Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health
Subject List<String>Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name String
- The name of this resource.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants List<String>
- A list of tenant IDs associated with this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Test List<string>Subject Keys - Keys to include in an account test. Valid options are:
space
,account
,type
- Application
Id 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.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Openid stringConnect Id - 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.
- Execution
Subject List<string>Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- Health
Subject List<string>Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- Name string
- The name of this resource.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- List<string>
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants List<string>
- A list of tenant IDs associated with this resource.
- Account
Test []stringSubject Keys - Keys to include in an account test. Valid options are:
space
,account
,type
- Application
Id 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.
- Authentication
Endpoint string - The authentication endpoint URI for this resource.
- Azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - Azure
Openid stringConnect Id - 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.
- Execution
Subject []stringKeys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- Health
Subject []stringKeys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- Name string
- The name of this resource.
- Resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- Space
Id string - The space ID associated with this resource.
- Subscription
Id string - The subscription ID of this resource.
- Tenant
Id string - The tenant ID of this resource.
- []string
- A list of tenant tags associated with this resource.
- Tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - Tenants []string
- A list of tenant IDs associated with this resource.
- account
Test List<String>Subject Keys - Keys to include in an account test. Valid options are:
space
,account
,type
- application
Id 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.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Openid StringConnect Id - 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.
- execution
Subject List<String>Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health
Subject List<String>Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name String
- The name of this resource.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants List<String>
- A list of tenant IDs associated with this resource.
- account
Test string[]Subject Keys - Keys to include in an account test. Valid options are:
space
,account
,type
- application
Id 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.
- authentication
Endpoint string - The authentication endpoint URI for this resource.
- azure
Environment string - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Openid stringConnect Id - 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.
- execution
Subject string[]Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health
Subject string[]Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name string
- The name of this resource.
- resource
Manager stringEndpoint - The resource manager endpoint URI for this resource.
- space
Id string - The space ID associated with this resource.
- subscription
Id string - The subscription ID of this resource.
- tenant
Id string - The tenant ID of this resource.
- string[]
- A list of tenant tags associated with this resource.
- tenanted
Deployment stringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants string[]
- A list of tenant IDs associated with this resource.
- account_
test_ Sequence[str]subject_ keys - 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
, orAzureUSGovernment
. - azure_
openid_ strconnect_ id - 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_ Sequence[str]keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health_
subject_ Sequence[str]keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name str
- The name of this resource.
- resource_
manager_ strendpoint - The resource manager endpoint URI for this resource.
- space_
id str - The space ID associated with this resource.
- subscription_
id str - The subscription ID of this resource.
- tenant_
id str - The tenant ID of this resource.
- Sequence[str]
- A list of tenant tags associated with this resource.
- tenanted_
deployment_ strparticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants Sequence[str]
- A list of tenant IDs associated with this resource.
- account
Test List<String>Subject Keys - Keys to include in an account test. Valid options are:
space
,account
,type
- application
Id 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.
- authentication
Endpoint String - The authentication endpoint URI for this resource.
- azure
Environment String - The Azure environment associated with this resource. Valid Azure environments are
AzureCloud
,AzureChinaCloud
,AzureGermanCloud
, orAzureUSGovernment
. - azure
Openid StringConnect Id - 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.
- execution
Subject List<String>Keys - Keys to include in a deployment or runbook. Valid options are
space
,environment
,project
,tenant
,runbook
,account
,type
- health
Subject List<String>Keys - Keys to include in a health check. Valid options are
space
,account
,target
,type
- name String
- The name of this resource.
- resource
Manager StringEndpoint - The resource manager endpoint URI for this resource.
- space
Id String - The space ID associated with this resource.
- subscription
Id String - The subscription ID of this resource.
- tenant
Id String - The tenant ID of this resource.
- List<String>
- A list of tenant tags associated with this resource.
- tenanted
Deployment StringParticipation - The tenanted deployment mode of the resource. Valid account types are
Untenanted
,TenantedOrUntenanted
, orTenanted
. - tenants List<String>
- A list of tenant IDs associated with this resource.
Import
$ pulumi import octopusdeploy:index/azureOpenidConnect:AzureOpenidConnect [options] octopusdeploy_azure_openid_connect.<name> <account-id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- octopusdeploy octopusdeploylabs/terraform-provider-octopusdeploy
- License
- Notes
- This Pulumi package is based on the
octopusdeploy
Terraform Provider.