ClientGrant
Auth0 uses various grant types, or methods by which you grant limited access to your resources to another entity without exposing credentials. The OAuth 2.0 protocol supports several types of grants, which allow different types of access. This resource allows you to create and manage client grants used with configured Auth0 clients.
Example Usage
using Pulumi;
using Auth0 = Pulumi.Auth0;
class MyStack : Stack
{
public MyStack()
{
var myClient = new Auth0.Client("myClient", new Auth0.ClientArgs
{
});
var myResourceServer = new Auth0.ResourceServer("myResourceServer", new Auth0.ResourceServerArgs
{
Identifier = "https://api.example.com/client-grant",
Scopes =
{
new Auth0.Inputs.ResourceServerScopeArgs
{
Description = "Create foos",
Value = "create:foo",
},
new Auth0.Inputs.ResourceServerScopeArgs
{
Description = "Create bars",
Value = "create:bar",
},
},
});
var myClientGrant = new Auth0.ClientGrant("myClientGrant", new Auth0.ClientGrantArgs
{
Audience = myResourceServer.Identifier,
ClientId = myClient.Id,
Scopes =
{
"create:foo",
},
});
}
}
Coming soon!
import pulumi
import pulumi_auth0 as auth0
my_client = auth0.Client("myClient")
my_resource_server = auth0.ResourceServer("myResourceServer",
identifier="https://api.example.com/client-grant",
scopes=[
{
"description": "Create foos",
"value": "create:foo",
},
{
"description": "Create bars",
"value": "create:bar",
},
])
my_client_grant = auth0.ClientGrant("myClientGrant",
audience=my_resource_server.identifier,
client_id=my_client.id,
scopes=["create:foo"])import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const myClient = new auth0.Client("my_client", {});
const myResourceServer = new auth0.ResourceServer("my_resource_server", {
identifier: "https://api.example.com/client-grant",
scopes: [
{
description: "Create foos",
value: "create:foo",
},
{
description: "Create bars",
value: "create:bar",
},
],
});
const myClientGrant = new auth0.ClientGrant("my_client_grant", {
audience: myResourceServer.identifier,
clientId: myClient.id,
scopes: ["create:foo"],
});Create a ClientGrant Resource
new ClientGrant(name: string, args: ClientGrantArgs, opts?: CustomResourceOptions);def ClientGrant(resource_name, opts=None, audience=None, client_id=None, scopes=None, __props__=None);func NewClientGrant(ctx *Context, name string, args ClientGrantArgs, opts ...ResourceOption) (*ClientGrant, error)public ClientGrant(string name, ClientGrantArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args ClientGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClientGrantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClientGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
ClientGrant Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The ClientGrant resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the ClientGrant resource produces the following output properties:
Look up an Existing ClientGrant Resource
Get an existing ClientGrant 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?: ClientGrantState, opts?: CustomResourceOptions): ClientGrantstatic get(resource_name, id, opts=None, audience=None, client_id=None, scopes=None, __props__=None);func GetClientGrant(ctx *Context, name string, id IDInput, state *ClientGrantState, opts ...ResourceOption) (*ClientGrant, error)public static ClientGrant Get(string name, Input<string> id, ClientGrantState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
Package Details
- Repository
- https://github.com/pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0Terraform Provider.