rancher2.AuthConfigAdfs
Explore with Pulumi AI
Provides a Rancher v2 Auth Config ADFS resource. This can be used to configure and enable Auth Config ADFS for Rancher v2 RKE clusters and retrieve their information.
In addition to the built-in local auth, only one external auth config provider can be enabled at a time.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
// Create a new rancher2 Auth Config ADFS
const adfs = new rancher2.AuthConfigAdfs("adfs", {
    displayNameField: "<DISPLAY_NAME_FIELD>",
    groupsField: "<GROUPS_FIELD>",
    idpMetadataContent: "<IDP_METADATA_CONTENT>",
    rancherApiHost: "https://<RANCHER_API_HOST>",
    spCert: "<SP_CERT>",
    spKey: "<SP_KEY>",
    uidField: "<UID_FIELD>",
    userNameField: "<USER_NAME_FIELD>",
});
import pulumi
import pulumi_rancher2 as rancher2
# Create a new rancher2 Auth Config ADFS
adfs = rancher2.AuthConfigAdfs("adfs",
    display_name_field="<DISPLAY_NAME_FIELD>",
    groups_field="<GROUPS_FIELD>",
    idp_metadata_content="<IDP_METADATA_CONTENT>",
    rancher_api_host="https://<RANCHER_API_HOST>",
    sp_cert="<SP_CERT>",
    sp_key="<SP_KEY>",
    uid_field="<UID_FIELD>",
    user_name_field="<USER_NAME_FIELD>")
package main
import (
	"github.com/pulumi/pulumi-rancher2/sdk/v8/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 ADFS
		_, err := rancher2.NewAuthConfigAdfs(ctx, "adfs", &rancher2.AuthConfigAdfsArgs{
			DisplayNameField:   pulumi.String("<DISPLAY_NAME_FIELD>"),
			GroupsField:        pulumi.String("<GROUPS_FIELD>"),
			IdpMetadataContent: pulumi.String("<IDP_METADATA_CONTENT>"),
			RancherApiHost:     pulumi.String("https://<RANCHER_API_HOST>"),
			SpCert:             pulumi.String("<SP_CERT>"),
			SpKey:              pulumi.String("<SP_KEY>"),
			UidField:           pulumi.String("<UID_FIELD>"),
			UserNameField:      pulumi.String("<USER_NAME_FIELD>"),
		})
		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 ADFS
    var adfs = new Rancher2.AuthConfigAdfs("adfs", new()
    {
        DisplayNameField = "<DISPLAY_NAME_FIELD>",
        GroupsField = "<GROUPS_FIELD>",
        IdpMetadataContent = "<IDP_METADATA_CONTENT>",
        RancherApiHost = "https://<RANCHER_API_HOST>",
        SpCert = "<SP_CERT>",
        SpKey = "<SP_KEY>",
        UidField = "<UID_FIELD>",
        UserNameField = "<USER_NAME_FIELD>",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rancher2.AuthConfigAdfs;
import com.pulumi.rancher2.AuthConfigAdfsArgs;
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 ADFS
        var adfs = new AuthConfigAdfs("adfs", AuthConfigAdfsArgs.builder()
            .displayNameField("<DISPLAY_NAME_FIELD>")
            .groupsField("<GROUPS_FIELD>")
            .idpMetadataContent("<IDP_METADATA_CONTENT>")
            .rancherApiHost("https://<RANCHER_API_HOST>")
            .spCert("<SP_CERT>")
            .spKey("<SP_KEY>")
            .uidField("<UID_FIELD>")
            .userNameField("<USER_NAME_FIELD>")
            .build());
    }
}
resources:
  # Create a new rancher2 Auth Config ADFS
  adfs:
    type: rancher2:AuthConfigAdfs
    properties:
      displayNameField: <DISPLAY_NAME_FIELD>
      groupsField: <GROUPS_FIELD>
      idpMetadataContent: <IDP_METADATA_CONTENT>
      rancherApiHost: https://<RANCHER_API_HOST>
      spCert: <SP_CERT>
      spKey: <SP_KEY>
      uidField: <UID_FIELD>
      userNameField: <USER_NAME_FIELD>
Create AuthConfigAdfs Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthConfigAdfs(name: string, args: AuthConfigAdfsArgs, opts?: CustomResourceOptions);@overload
def AuthConfigAdfs(resource_name: str,
                   args: AuthConfigAdfsArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def AuthConfigAdfs(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   idp_metadata_content: Optional[str] = None,
                   display_name_field: Optional[str] = None,
                   groups_field: Optional[str] = None,
                   rancher_api_host: Optional[str] = None,
                   sp_cert: Optional[str] = None,
                   sp_key: Optional[str] = None,
                   uid_field: Optional[str] = None,
                   user_name_field: Optional[str] = None,
                   allowed_principal_ids: Optional[Sequence[str]] = None,
                   annotations: Optional[Mapping[str, str]] = None,
                   enabled: Optional[bool] = None,
                   access_mode: Optional[str] = None,
                   labels: Optional[Mapping[str, str]] = None)func NewAuthConfigAdfs(ctx *Context, name string, args AuthConfigAdfsArgs, opts ...ResourceOption) (*AuthConfigAdfs, error)public AuthConfigAdfs(string name, AuthConfigAdfsArgs args, CustomResourceOptions? opts = null)
public AuthConfigAdfs(String name, AuthConfigAdfsArgs args)
public AuthConfigAdfs(String name, AuthConfigAdfsArgs args, CustomResourceOptions options)
type: rancher2:AuthConfigAdfs
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 AuthConfigAdfsArgs
- 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 AuthConfigAdfsArgs
- 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 AuthConfigAdfsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthConfigAdfsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthConfigAdfsArgs
- 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 authConfigAdfsResource = new Rancher2.AuthConfigAdfs("authConfigAdfsResource", new()
{
    IdpMetadataContent = "string",
    DisplayNameField = "string",
    GroupsField = "string",
    RancherApiHost = "string",
    SpCert = "string",
    SpKey = "string",
    UidField = "string",
    UserNameField = "string",
    AllowedPrincipalIds = new[]
    {
        "string",
    },
    Annotations = 
    {
        { "string", "string" },
    },
    Enabled = false,
    AccessMode = "string",
    Labels = 
    {
        { "string", "string" },
    },
});
example, err := rancher2.NewAuthConfigAdfs(ctx, "authConfigAdfsResource", &rancher2.AuthConfigAdfsArgs{
	IdpMetadataContent: pulumi.String("string"),
	DisplayNameField:   pulumi.String("string"),
	GroupsField:        pulumi.String("string"),
	RancherApiHost:     pulumi.String("string"),
	SpCert:             pulumi.String("string"),
	SpKey:              pulumi.String("string"),
	UidField:           pulumi.String("string"),
	UserNameField:      pulumi.String("string"),
	AllowedPrincipalIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Enabled:    pulumi.Bool(false),
	AccessMode: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var authConfigAdfsResource = new AuthConfigAdfs("authConfigAdfsResource", AuthConfigAdfsArgs.builder()
    .idpMetadataContent("string")
    .displayNameField("string")
    .groupsField("string")
    .rancherApiHost("string")
    .spCert("string")
    .spKey("string")
    .uidField("string")
    .userNameField("string")
    .allowedPrincipalIds("string")
    .annotations(Map.of("string", "string"))
    .enabled(false)
    .accessMode("string")
    .labels(Map.of("string", "string"))
    .build());
auth_config_adfs_resource = rancher2.AuthConfigAdfs("authConfigAdfsResource",
    idp_metadata_content="string",
    display_name_field="string",
    groups_field="string",
    rancher_api_host="string",
    sp_cert="string",
    sp_key="string",
    uid_field="string",
    user_name_field="string",
    allowed_principal_ids=["string"],
    annotations={
        "string": "string",
    },
    enabled=False,
    access_mode="string",
    labels={
        "string": "string",
    })
const authConfigAdfsResource = new rancher2.AuthConfigAdfs("authConfigAdfsResource", {
    idpMetadataContent: "string",
    displayNameField: "string",
    groupsField: "string",
    rancherApiHost: "string",
    spCert: "string",
    spKey: "string",
    uidField: "string",
    userNameField: "string",
    allowedPrincipalIds: ["string"],
    annotations: {
        string: "string",
    },
    enabled: false,
    accessMode: "string",
    labels: {
        string: "string",
    },
});
type: rancher2:AuthConfigAdfs
properties:
    accessMode: string
    allowedPrincipalIds:
        - string
    annotations:
        string: string
    displayNameField: string
    enabled: false
    groupsField: string
    idpMetadataContent: string
    labels:
        string: string
    rancherApiHost: string
    spCert: string
    spKey: string
    uidField: string
    userNameField: string
AuthConfigAdfs 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 AuthConfigAdfs resource accepts the following input properties:
- DisplayName stringField 
- ADFS display name field (string)
- GroupsField string
- ADFS group field (string)
- IdpMetadata stringContent 
- ADFS IDP metadata content (string)
- RancherApi stringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- SpCert string
- ADFS SP cert (string)
- SpKey string
- ADFS SP key (string)
- UidField string
- ADFS UID field (string)
- UserName stringField 
- ADFS user name field (string)
- AccessMode string
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- AllowedPrincipal List<string>Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- Annotations Dictionary<string, string>
- Annotations of the resource (map)
- Enabled bool
- Enable auth config provider. Default true(bool)
- Labels Dictionary<string, string>
- Labels of the resource (map)
- DisplayName stringField 
- ADFS display name field (string)
- GroupsField string
- ADFS group field (string)
- IdpMetadata stringContent 
- ADFS IDP metadata content (string)
- RancherApi stringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- SpCert string
- ADFS SP cert (string)
- SpKey string
- ADFS SP key (string)
- UidField string
- ADFS UID field (string)
- UserName stringField 
- ADFS user name field (string)
- AccessMode string
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- AllowedPrincipal []stringIds 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- Annotations map[string]string
- Annotations of the resource (map)
- Enabled bool
- Enable auth config provider. Default true(bool)
- Labels map[string]string
- Labels of the resource (map)
- displayName StringField 
- ADFS display name field (string)
- groupsField String
- ADFS group field (string)
- idpMetadata StringContent 
- ADFS IDP metadata content (string)
- rancherApi StringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- spCert String
- ADFS SP cert (string)
- spKey String
- ADFS SP key (string)
- uidField String
- ADFS UID field (string)
- userName StringField 
- ADFS user name field (string)
- accessMode String
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowedPrincipal List<String>Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations Map<String,String>
- Annotations of the resource (map)
- enabled Boolean
- Enable auth config provider. Default true(bool)
- labels Map<String,String>
- Labels of the resource (map)
- displayName stringField 
- ADFS display name field (string)
- groupsField string
- ADFS group field (string)
- idpMetadata stringContent 
- ADFS IDP metadata content (string)
- rancherApi stringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- spCert string
- ADFS SP cert (string)
- spKey string
- ADFS SP key (string)
- uidField string
- ADFS UID field (string)
- userName stringField 
- ADFS user name field (string)
- accessMode string
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowedPrincipal string[]Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations {[key: string]: string}
- Annotations of the resource (map)
- enabled boolean
- Enable auth config provider. Default true(bool)
- labels {[key: string]: string}
- Labels of the resource (map)
- display_name_ strfield 
- ADFS display name field (string)
- groups_field str
- ADFS group field (string)
- idp_metadata_ strcontent 
- ADFS IDP metadata content (string)
- rancher_api_ strhost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- sp_cert str
- ADFS SP cert (string)
- sp_key str
- ADFS SP key (string)
- uid_field str
- ADFS UID field (string)
- user_name_ strfield 
- ADFS user name field (string)
- access_mode str
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowed_principal_ Sequence[str]ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations Mapping[str, str]
- Annotations of the resource (map)
- enabled bool
- Enable auth config provider. Default true(bool)
- labels Mapping[str, str]
- Labels of the resource (map)
- displayName StringField 
- ADFS display name field (string)
- groupsField String
- ADFS group field (string)
- idpMetadata StringContent 
- ADFS IDP metadata content (string)
- rancherApi StringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- spCert String
- ADFS SP cert (string)
- spKey String
- ADFS SP key (string)
- uidField String
- ADFS UID field (string)
- userName StringField 
- ADFS user name field (string)
- accessMode String
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowedPrincipal List<String>Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations Map<String>
- Annotations of the resource (map)
- enabled Boolean
- Enable auth config provider. Default true(bool)
- labels Map<String>
- Labels of the resource (map)
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthConfigAdfs resource produces the following output properties:
Look up Existing AuthConfigAdfs Resource
Get an existing AuthConfigAdfs 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?: AuthConfigAdfsState, opts?: CustomResourceOptions): AuthConfigAdfs@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,
        display_name_field: Optional[str] = None,
        enabled: Optional[bool] = None,
        groups_field: Optional[str] = None,
        idp_metadata_content: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        rancher_api_host: Optional[str] = None,
        sp_cert: Optional[str] = None,
        sp_key: Optional[str] = None,
        type: Optional[str] = None,
        uid_field: Optional[str] = None,
        user_name_field: Optional[str] = None) -> AuthConfigAdfsfunc GetAuthConfigAdfs(ctx *Context, name string, id IDInput, state *AuthConfigAdfsState, opts ...ResourceOption) (*AuthConfigAdfs, error)public static AuthConfigAdfs Get(string name, Input<string> id, AuthConfigAdfsState? state, CustomResourceOptions? opts = null)public static AuthConfigAdfs get(String name, Output<String> id, AuthConfigAdfsState state, CustomResourceOptions options)resources:  _:    type: rancher2:AuthConfigAdfs    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.
- AccessMode string
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- AllowedPrincipal List<string>Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- Annotations Dictionary<string, string>
- Annotations of the resource (map)
- DisplayName stringField 
- ADFS display name field (string)
- Enabled bool
- Enable auth config provider. Default true(bool)
- GroupsField string
- ADFS group field (string)
- IdpMetadata stringContent 
- ADFS IDP metadata content (string)
- Labels Dictionary<string, string>
- Labels of the resource (map)
- Name string
- (Computed) The name of the resource (string)
- RancherApi stringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- SpCert string
- ADFS SP cert (string)
- SpKey string
- ADFS SP key (string)
- Type string
- (Computed) The type of the resource (string)
- UidField string
- ADFS UID field (string)
- UserName stringField 
- ADFS user name field (string)
- AccessMode string
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- AllowedPrincipal []stringIds 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- Annotations map[string]string
- Annotations of the resource (map)
- DisplayName stringField 
- ADFS display name field (string)
- Enabled bool
- Enable auth config provider. Default true(bool)
- GroupsField string
- ADFS group field (string)
- IdpMetadata stringContent 
- ADFS IDP metadata content (string)
- Labels map[string]string
- Labels of the resource (map)
- Name string
- (Computed) The name of the resource (string)
- RancherApi stringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- SpCert string
- ADFS SP cert (string)
- SpKey string
- ADFS SP key (string)
- Type string
- (Computed) The type of the resource (string)
- UidField string
- ADFS UID field (string)
- UserName stringField 
- ADFS user name field (string)
- accessMode String
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowedPrincipal List<String>Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations Map<String,String>
- Annotations of the resource (map)
- displayName StringField 
- ADFS display name field (string)
- enabled Boolean
- Enable auth config provider. Default true(bool)
- groupsField String
- ADFS group field (string)
- idpMetadata StringContent 
- ADFS IDP metadata content (string)
- labels Map<String,String>
- Labels of the resource (map)
- name String
- (Computed) The name of the resource (string)
- rancherApi StringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- spCert String
- ADFS SP cert (string)
- spKey String
- ADFS SP key (string)
- type String
- (Computed) The type of the resource (string)
- uidField String
- ADFS UID field (string)
- userName StringField 
- ADFS user name field (string)
- accessMode string
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowedPrincipal string[]Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations {[key: string]: string}
- Annotations of the resource (map)
- displayName stringField 
- ADFS display name field (string)
- enabled boolean
- Enable auth config provider. Default true(bool)
- groupsField string
- ADFS group field (string)
- idpMetadata stringContent 
- ADFS IDP metadata content (string)
- labels {[key: string]: string}
- Labels of the resource (map)
- name string
- (Computed) The name of the resource (string)
- rancherApi stringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- spCert string
- ADFS SP cert (string)
- spKey string
- ADFS SP key (string)
- type string
- (Computed) The type of the resource (string)
- uidField string
- ADFS UID field (string)
- userName stringField 
- ADFS user name field (string)
- access_mode str
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowed_principal_ Sequence[str]ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations Mapping[str, str]
- Annotations of the resource (map)
- display_name_ strfield 
- ADFS display name field (string)
- enabled bool
- Enable auth config provider. Default true(bool)
- groups_field str
- ADFS group field (string)
- idp_metadata_ strcontent 
- ADFS IDP metadata content (string)
- labels Mapping[str, str]
- Labels of the resource (map)
- name str
- (Computed) The name of the resource (string)
- rancher_api_ strhost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- sp_cert str
- ADFS SP cert (string)
- sp_key str
- ADFS SP key (string)
- type str
- (Computed) The type of the resource (string)
- uid_field str
- ADFS UID field (string)
- user_name_ strfield 
- ADFS user name field (string)
- accessMode String
- Access mode for auth. required,restricted,unrestrictedare supported. Defaultunrestricted(string)
- allowedPrincipal List<String>Ids 
- Allowed principal ids for auth. Required if access_modeisrequiredorrestricted. Ex:adfs_user://<USER_ID>adfs_group://<GROUP_ID>(list)
- annotations Map<String>
- Annotations of the resource (map)
- displayName StringField 
- ADFS display name field (string)
- enabled Boolean
- Enable auth config provider. Default true(bool)
- groupsField String
- ADFS group field (string)
- idpMetadata StringContent 
- ADFS IDP metadata content (string)
- labels Map<String>
- Labels of the resource (map)
- name String
- (Computed) The name of the resource (string)
- rancherApi StringHost 
- Rancher URL. URL scheme needs to be specified, https://<RANCHER_API_HOST>(string)
- spCert String
- ADFS SP cert (string)
- spKey String
- ADFS SP key (string)
- type String
- (Computed) The type of the resource (string)
- uidField String
- ADFS UID field (string)
- userName StringField 
- ADFS user name field (string)
Package Details
- Repository
- Rancher2 pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the rancher2Terraform Provider.