rancher2.AuthConfigAzureAd
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
// Create a new rancher2 Auth Config AzureAD
const azuread = new rancher2.AuthConfigAzureAd("azuread", {
applicationId: "<AZUREAD_APP_ID>",
applicationSecret: "<AZUREAD_APP_SECRET>",
authEndpoint: "<AZUREAD_AUTH_ENDPOINT>",
graphEndpoint: "<AZUREAD_GRAPH_ENDPOINT>",
rancherUrl: "<RANCHER_URL>",
tenantId: "<AZUREAD_TENANT_ID>",
tokenEndpoint: "<AZUREAD_TOKEN_ENDPOINT>",
});
import pulumi
import pulumi_rancher2 as rancher2
# Create a new rancher2 Auth Config AzureAD
azuread = rancher2.AuthConfigAzureAd("azuread",
application_id="<AZUREAD_APP_ID>",
application_secret="<AZUREAD_APP_SECRET>",
auth_endpoint="<AZUREAD_AUTH_ENDPOINT>",
graph_endpoint="<AZUREAD_GRAPH_ENDPOINT>",
rancher_url="<RANCHER_URL>",
tenant_id="<AZUREAD_TENANT_ID>",
token_endpoint="<AZUREAD_TOKEN_ENDPOINT>")
package main
import (
"github.com/pulumi/pulumi-rancher2/sdk/v7/go/rancher2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Create a new rancher2 Auth Config AzureAD
_, err := rancher2.NewAuthConfigAzureAd(ctx, "azuread", &rancher2.AuthConfigAzureAdArgs{
ApplicationId: pulumi.String("<AZUREAD_APP_ID>"),
ApplicationSecret: pulumi.String("<AZUREAD_APP_SECRET>"),
AuthEndpoint: pulumi.String("<AZUREAD_AUTH_ENDPOINT>"),
GraphEndpoint: pulumi.String("<AZUREAD_GRAPH_ENDPOINT>"),
RancherUrl: pulumi.String("<RANCHER_URL>"),
TenantId: pulumi.String("<AZUREAD_TENANT_ID>"),
TokenEndpoint: pulumi.String("<AZUREAD_TOKEN_ENDPOINT>"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
return await Deployment.RunAsync(() =>
{
// Create a new rancher2 Auth Config AzureAD
var azuread = new Rancher2.AuthConfigAzureAd("azuread", new()
{
ApplicationId = "<AZUREAD_APP_ID>",
ApplicationSecret = "<AZUREAD_APP_SECRET>",
AuthEndpoint = "<AZUREAD_AUTH_ENDPOINT>",
GraphEndpoint = "<AZUREAD_GRAPH_ENDPOINT>",
RancherUrl = "<RANCHER_URL>",
TenantId = "<AZUREAD_TENANT_ID>",
TokenEndpoint = "<AZUREAD_TOKEN_ENDPOINT>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rancher2.AuthConfigAzureAd;
import com.pulumi.rancher2.AuthConfigAzureAdArgs;
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) {
// Create a new rancher2 Auth Config AzureAD
var azuread = new AuthConfigAzureAd("azuread", AuthConfigAzureAdArgs.builder()
.applicationId("<AZUREAD_APP_ID>")
.applicationSecret("<AZUREAD_APP_SECRET>")
.authEndpoint("<AZUREAD_AUTH_ENDPOINT>")
.graphEndpoint("<AZUREAD_GRAPH_ENDPOINT>")
.rancherUrl("<RANCHER_URL>")
.tenantId("<AZUREAD_TENANT_ID>")
.tokenEndpoint("<AZUREAD_TOKEN_ENDPOINT>")
.build());
}
}
resources:
# Create a new rancher2 Auth Config AzureAD
azuread:
type: rancher2:AuthConfigAzureAd
properties:
applicationId: <AZUREAD_APP_ID>
applicationSecret: <AZUREAD_APP_SECRET>
authEndpoint: <AZUREAD_AUTH_ENDPOINT>
graphEndpoint: <AZUREAD_GRAPH_ENDPOINT>
rancherUrl: <RANCHER_URL>
tenantId: <AZUREAD_TENANT_ID>
tokenEndpoint: <AZUREAD_TOKEN_ENDPOINT>
Create AuthConfigAzureAd Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthConfigAzureAd(name: string, args: AuthConfigAzureAdArgs, opts?: CustomResourceOptions);
@overload
def AuthConfigAzureAd(resource_name: str,
args: AuthConfigAzureAdArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthConfigAzureAd(resource_name: str,
opts: Optional[ResourceOptions] = None,
graph_endpoint: Optional[str] = None,
token_endpoint: Optional[str] = None,
tenant_id: Optional[str] = None,
application_id: Optional[str] = None,
application_secret: Optional[str] = None,
auth_endpoint: Optional[str] = None,
rancher_url: Optional[str] = None,
enabled: Optional[bool] = None,
endpoint: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
access_mode: Optional[str] = None,
annotations: Optional[Mapping[str, str]] = None,
allowed_principal_ids: Optional[Sequence[str]] = None)
func NewAuthConfigAzureAd(ctx *Context, name string, args AuthConfigAzureAdArgs, opts ...ResourceOption) (*AuthConfigAzureAd, error)
public AuthConfigAzureAd(string name, AuthConfigAzureAdArgs args, CustomResourceOptions? opts = null)
public AuthConfigAzureAd(String name, AuthConfigAzureAdArgs args)
public AuthConfigAzureAd(String name, AuthConfigAzureAdArgs args, CustomResourceOptions options)
type: rancher2:AuthConfigAzureAd
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 AuthConfigAzureAdArgs
- 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 AuthConfigAzureAdArgs
- 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 AuthConfigAzureAdArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthConfigAzureAdArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthConfigAzureAdArgs
- 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 authConfigAzureAdResource = new Rancher2.AuthConfigAzureAd("authConfigAzureAdResource", new()
{
GraphEndpoint = "string",
TokenEndpoint = "string",
TenantId = "string",
ApplicationId = "string",
ApplicationSecret = "string",
AuthEndpoint = "string",
RancherUrl = "string",
Enabled = false,
Endpoint = "string",
Labels =
{
{ "string", "string" },
},
AccessMode = "string",
Annotations =
{
{ "string", "string" },
},
AllowedPrincipalIds = new[]
{
"string",
},
});
example, err := rancher2.NewAuthConfigAzureAd(ctx, "authConfigAzureAdResource", &rancher2.AuthConfigAzureAdArgs{
GraphEndpoint: pulumi.String("string"),
TokenEndpoint: pulumi.String("string"),
TenantId: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
ApplicationSecret: pulumi.String("string"),
AuthEndpoint: pulumi.String("string"),
RancherUrl: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Endpoint: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
AccessMode: pulumi.String("string"),
Annotations: pulumi.StringMap{
"string": pulumi.String("string"),
},
AllowedPrincipalIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var authConfigAzureAdResource = new AuthConfigAzureAd("authConfigAzureAdResource", AuthConfigAzureAdArgs.builder()
.graphEndpoint("string")
.tokenEndpoint("string")
.tenantId("string")
.applicationId("string")
.applicationSecret("string")
.authEndpoint("string")
.rancherUrl("string")
.enabled(false)
.endpoint("string")
.labels(Map.of("string", "string"))
.accessMode("string")
.annotations(Map.of("string", "string"))
.allowedPrincipalIds("string")
.build());
auth_config_azure_ad_resource = rancher2.AuthConfigAzureAd("authConfigAzureAdResource",
graph_endpoint="string",
token_endpoint="string",
tenant_id="string",
application_id="string",
application_secret="string",
auth_endpoint="string",
rancher_url="string",
enabled=False,
endpoint="string",
labels={
"string": "string",
},
access_mode="string",
annotations={
"string": "string",
},
allowed_principal_ids=["string"])
const authConfigAzureAdResource = new rancher2.AuthConfigAzureAd("authConfigAzureAdResource", {
graphEndpoint: "string",
tokenEndpoint: "string",
tenantId: "string",
applicationId: "string",
applicationSecret: "string",
authEndpoint: "string",
rancherUrl: "string",
enabled: false,
endpoint: "string",
labels: {
string: "string",
},
accessMode: "string",
annotations: {
string: "string",
},
allowedPrincipalIds: ["string"],
});
type: rancher2:AuthConfigAzureAd
properties:
accessMode: string
allowedPrincipalIds:
- string
annotations:
string: string
applicationId: string
applicationSecret: string
authEndpoint: string
enabled: false
endpoint: string
graphEndpoint: string
labels:
string: string
rancherUrl: string
tenantId: string
tokenEndpoint: string
AuthConfigAzureAd 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 AuthConfigAzureAd resource accepts the following input properties:
- Application
Id string - AzureAD auth application ID (string)
- Application
Secret string - AzureAD auth application secret (string)
- Auth
Endpoint string - AzureAD auth endpoint (string)
- Graph
Endpoint string - AzureAD graph endpoint (string)
- Rancher
Url string - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- Tenant
Id string - AzureAD tenant ID (string)
- Token
Endpoint string - AzureAD token endpoint (string)
- Access
Mode string - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - Allowed
Principal List<string>Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - Annotations Dictionary<string, string>
- Annotations of the resource (map)
- Enabled bool
- Enable auth config provider. Default
true
(bool) - Endpoint string
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - Labels Dictionary<string, string>
- Labels of the resource (map)
- Application
Id string - AzureAD auth application ID (string)
- Application
Secret string - AzureAD auth application secret (string)
- Auth
Endpoint string - AzureAD auth endpoint (string)
- Graph
Endpoint string - AzureAD graph endpoint (string)
- Rancher
Url string - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- Tenant
Id string - AzureAD tenant ID (string)
- Token
Endpoint string - AzureAD token endpoint (string)
- Access
Mode string - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - Allowed
Principal []stringIds - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - Annotations map[string]string
- Annotations of the resource (map)
- Enabled bool
- Enable auth config provider. Default
true
(bool) - Endpoint string
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - Labels map[string]string
- Labels of the resource (map)
- application
Id String - AzureAD auth application ID (string)
- application
Secret String - AzureAD auth application secret (string)
- auth
Endpoint String - AzureAD auth endpoint (string)
- graph
Endpoint String - AzureAD graph endpoint (string)
- rancher
Url String - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant
Id String - AzureAD tenant ID (string)
- token
Endpoint String - AzureAD token endpoint (string)
- access
Mode String - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed
Principal List<String>Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations Map<String,String>
- Annotations of the resource (map)
- enabled Boolean
- Enable auth config provider. Default
true
(bool) - endpoint String
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - labels Map<String,String>
- Labels of the resource (map)
- application
Id string - AzureAD auth application ID (string)
- application
Secret string - AzureAD auth application secret (string)
- auth
Endpoint string - AzureAD auth endpoint (string)
- graph
Endpoint string - AzureAD graph endpoint (string)
- rancher
Url string - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant
Id string - AzureAD tenant ID (string)
- token
Endpoint string - AzureAD token endpoint (string)
- access
Mode string - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed
Principal string[]Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations {[key: string]: string}
- Annotations of the resource (map)
- enabled boolean
- Enable auth config provider. Default
true
(bool) - endpoint string
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - labels {[key: string]: string}
- Labels of the resource (map)
- application_
id str - AzureAD auth application ID (string)
- application_
secret str - AzureAD auth application secret (string)
- auth_
endpoint str - AzureAD auth endpoint (string)
- graph_
endpoint str - AzureAD graph endpoint (string)
- rancher_
url str - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant_
id str - AzureAD tenant ID (string)
- token_
endpoint str - AzureAD token endpoint (string)
- access_
mode str - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed_
principal_ Sequence[str]ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations Mapping[str, str]
- Annotations of the resource (map)
- enabled bool
- Enable auth config provider. Default
true
(bool) - endpoint str
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - labels Mapping[str, str]
- Labels of the resource (map)
- application
Id String - AzureAD auth application ID (string)
- application
Secret String - AzureAD auth application secret (string)
- auth
Endpoint String - AzureAD auth endpoint (string)
- graph
Endpoint String - AzureAD graph endpoint (string)
- rancher
Url String - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant
Id String - AzureAD tenant ID (string)
- token
Endpoint String - AzureAD token endpoint (string)
- access
Mode String - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed
Principal List<String>Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations Map<String>
- Annotations of the resource (map)
- enabled Boolean
- Enable auth config provider. Default
true
(bool) - endpoint String
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - labels Map<String>
- Labels of the resource (map)
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthConfigAzureAd resource produces the following output properties:
Look up Existing AuthConfigAzureAd Resource
Get an existing AuthConfigAzureAd 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?: AuthConfigAzureAdState, opts?: CustomResourceOptions): AuthConfigAzureAd
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_mode: Optional[str] = None,
allowed_principal_ids: Optional[Sequence[str]] = None,
annotations: Optional[Mapping[str, str]] = None,
application_id: Optional[str] = None,
application_secret: Optional[str] = None,
auth_endpoint: Optional[str] = None,
enabled: Optional[bool] = None,
endpoint: Optional[str] = None,
graph_endpoint: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
rancher_url: Optional[str] = None,
tenant_id: Optional[str] = None,
token_endpoint: Optional[str] = None,
type: Optional[str] = None) -> AuthConfigAzureAd
func GetAuthConfigAzureAd(ctx *Context, name string, id IDInput, state *AuthConfigAzureAdState, opts ...ResourceOption) (*AuthConfigAzureAd, error)
public static AuthConfigAzureAd Get(string name, Input<string> id, AuthConfigAzureAdState? state, CustomResourceOptions? opts = null)
public static AuthConfigAzureAd get(String name, Output<String> id, AuthConfigAzureAdState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Access
Mode string - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - Allowed
Principal List<string>Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - Annotations Dictionary<string, string>
- Annotations of the resource (map)
- Application
Id string - AzureAD auth application ID (string)
- Application
Secret string - AzureAD auth application secret (string)
- Auth
Endpoint string - AzureAD auth endpoint (string)
- Enabled bool
- Enable auth config provider. Default
true
(bool) - Endpoint string
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - Graph
Endpoint string - AzureAD graph endpoint (string)
- Labels Dictionary<string, string>
- Labels of the resource (map)
- Name string
- (Computed) The name of the resource (string)
- Rancher
Url string - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- Tenant
Id string - AzureAD tenant ID (string)
- Token
Endpoint string - AzureAD token endpoint (string)
- Type string
- (Computed) The type of the resource (string)
- Access
Mode string - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - Allowed
Principal []stringIds - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - Annotations map[string]string
- Annotations of the resource (map)
- Application
Id string - AzureAD auth application ID (string)
- Application
Secret string - AzureAD auth application secret (string)
- Auth
Endpoint string - AzureAD auth endpoint (string)
- Enabled bool
- Enable auth config provider. Default
true
(bool) - Endpoint string
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - Graph
Endpoint string - AzureAD graph endpoint (string)
- Labels map[string]string
- Labels of the resource (map)
- Name string
- (Computed) The name of the resource (string)
- Rancher
Url string - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- Tenant
Id string - AzureAD tenant ID (string)
- Token
Endpoint string - AzureAD token endpoint (string)
- Type string
- (Computed) The type of the resource (string)
- access
Mode String - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed
Principal List<String>Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations Map<String,String>
- Annotations of the resource (map)
- application
Id String - AzureAD auth application ID (string)
- application
Secret String - AzureAD auth application secret (string)
- auth
Endpoint String - AzureAD auth endpoint (string)
- enabled Boolean
- Enable auth config provider. Default
true
(bool) - endpoint String
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - graph
Endpoint String - AzureAD graph endpoint (string)
- labels Map<String,String>
- Labels of the resource (map)
- name String
- (Computed) The name of the resource (string)
- rancher
Url String - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant
Id String - AzureAD tenant ID (string)
- token
Endpoint String - AzureAD token endpoint (string)
- type String
- (Computed) The type of the resource (string)
- access
Mode string - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed
Principal string[]Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations {[key: string]: string}
- Annotations of the resource (map)
- application
Id string - AzureAD auth application ID (string)
- application
Secret string - AzureAD auth application secret (string)
- auth
Endpoint string - AzureAD auth endpoint (string)
- enabled boolean
- Enable auth config provider. Default
true
(bool) - endpoint string
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - graph
Endpoint string - AzureAD graph endpoint (string)
- labels {[key: string]: string}
- Labels of the resource (map)
- name string
- (Computed) The name of the resource (string)
- rancher
Url string - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant
Id string - AzureAD tenant ID (string)
- token
Endpoint string - AzureAD token endpoint (string)
- type string
- (Computed) The type of the resource (string)
- access_
mode str - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed_
principal_ Sequence[str]ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations Mapping[str, str]
- Annotations of the resource (map)
- application_
id str - AzureAD auth application ID (string)
- application_
secret str - AzureAD auth application secret (string)
- auth_
endpoint str - AzureAD auth endpoint (string)
- enabled bool
- Enable auth config provider. Default
true
(bool) - endpoint str
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - graph_
endpoint str - AzureAD graph endpoint (string)
- labels Mapping[str, str]
- Labels of the resource (map)
- name str
- (Computed) The name of the resource (string)
- rancher_
url str - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant_
id str - AzureAD tenant ID (string)
- token_
endpoint str - AzureAD token endpoint (string)
- type str
- (Computed) The type of the resource (string)
- access
Mode String - Access mode for auth.
required
,restricted
,unrestricted
are supported. Defaultunrestricted
(string) - allowed
Principal List<String>Ids - Allowed principal ids for auth. Required if
access_mode
isrequired
orrestricted
. Ex:azuread_user://<USER_ID>
azuread_group://<GROUP_ID>
(list) - annotations Map<String>
- Annotations of the resource (map)
- application
Id String - AzureAD auth application ID (string)
- application
Secret String - AzureAD auth application secret (string)
- auth
Endpoint String - AzureAD auth endpoint (string)
- enabled Boolean
- Enable auth config provider. Default
true
(bool) - endpoint String
- AzureAD endpoint. Default
https://login.microsoftonline.com/
(string) - graph
Endpoint String - AzureAD graph endpoint (string)
- labels Map<String>
- Labels of the resource (map)
- name String
- (Computed) The name of the resource (string)
- rancher
Url String - Rancher URL (string). "<rancher_url>/verify-auth-azure"
- tenant
Id String - AzureAD tenant ID (string)
- token
Endpoint String - AzureAD token endpoint (string)
- type String
- (Computed) The type of the resource (string)
Package Details
- Repository
- Rancher2 pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2
Terraform Provider.