Manages a local/builtin connector in Dex. The local connector provides username/password authentication stored in Dex’s database. This is useful for testing or when you don’t have an external identity provider.
Create LocalConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LocalConnector(name: string, args: LocalConnectorArgs, opts?: CustomResourceOptions);@overload
def LocalConnector(resource_name: str,
args: LocalConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LocalConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
connector_id: Optional[str] = None,
name: Optional[str] = None,
enabled: Optional[bool] = None)func NewLocalConnector(ctx *Context, name string, args LocalConnectorArgs, opts ...ResourceOption) (*LocalConnector, error)public LocalConnector(string name, LocalConnectorArgs args, CustomResourceOptions? opts = null)
public LocalConnector(String name, LocalConnectorArgs args)
public LocalConnector(String name, LocalConnectorArgs args, CustomResourceOptions options)
type: dex:resources:LocalConnector
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 LocalConnectorArgs
- 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 LocalConnectorArgs
- 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 LocalConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LocalConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LocalConnectorArgs
- 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 localConnectorResource = new Dex.Resources.LocalConnector("localConnectorResource", new()
{
ConnectorId = "string",
Name = "string",
Enabled = false,
});
example, err := resources.NewLocalConnector(ctx, "localConnectorResource", &resources.LocalConnectorArgs{
ConnectorId: pulumi.String("string"),
Name: pulumi.String("string"),
Enabled: pulumi.Bool(false),
})
var localConnectorResource = new LocalConnector("localConnectorResource", LocalConnectorArgs.builder()
.connectorId("string")
.name("string")
.enabled(false)
.build());
local_connector_resource = dex.resources.LocalConnector("localConnectorResource",
connector_id="string",
name="string",
enabled=False)
const localConnectorResource = new dex.resources.LocalConnector("localConnectorResource", {
connectorId: "string",
name: "string",
enabled: false,
});
type: dex:resources:LocalConnector
properties:
connectorId: string
enabled: false
name: string
LocalConnector 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 LocalConnector resource accepts the following input properties:
- Connector
Id string - Unique identifier for the local connector.
- Name string
- Human-readable name for the connector, displayed to users during login.
- Enabled bool
- Whether the local connector is enabled. Defaults to true.
- Connector
Id string - Unique identifier for the local connector.
- Name string
- Human-readable name for the connector, displayed to users during login.
- Enabled bool
- Whether the local connector is enabled. Defaults to true.
- connector
Id String - Unique identifier for the local connector.
- name String
- Human-readable name for the connector, displayed to users during login.
- enabled Boolean
- Whether the local connector is enabled. Defaults to true.
- connector
Id string - Unique identifier for the local connector.
- name string
- Human-readable name for the connector, displayed to users during login.
- enabled boolean
- Whether the local connector is enabled. Defaults to true.
- connector_
id str - Unique identifier for the local connector.
- name str
- Human-readable name for the connector, displayed to users during login.
- enabled bool
- Whether the local connector is enabled. Defaults to true.
- connector
Id String - Unique identifier for the local connector.
- name String
- Human-readable name for the connector, displayed to users during login.
- enabled Boolean
- Whether the local connector is enabled. Defaults to true.
Outputs
All input properties are implicitly available as output properties. Additionally, the LocalConnector 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.
Package Details
- Repository
- dex kotaicode/pulumi-dex
- License
