1. Packages
  2. AWS Classic
  3. API Docs
  4. iot
  5. Authorizer

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

aws.iot.Authorizer

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

    Creates and manages an AWS IoT Authorizer.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    import * as std from "@pulumi/std";
    
    const example = new aws.iot.Authorizer("example", {
        name: "example",
        authorizerFunctionArn: exampleAwsLambdaFunction.arn,
        signingDisabled: false,
        status: "ACTIVE",
        tokenKeyName: "Token-Header",
        tokenSigningPublicKeys: {
            Key1: std.file({
                input: "test-fixtures/iot-authorizer-signing-key.pem",
            }).then(invoke => invoke.result),
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    import pulumi_std as std
    
    example = aws.iot.Authorizer("example",
        name="example",
        authorizer_function_arn=example_aws_lambda_function["arn"],
        signing_disabled=False,
        status="ACTIVE",
        token_key_name="Token-Header",
        token_signing_public_keys={
            "Key1": std.file(input="test-fixtures/iot-authorizer-signing-key.pem").result,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iot"
    	"github.com/pulumi/pulumi-std/sdk/go/std"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		invokeFile, err := std.File(ctx, &std.FileArgs{
    			Input: "test-fixtures/iot-authorizer-signing-key.pem",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = iot.NewAuthorizer(ctx, "example", &iot.AuthorizerArgs{
    			Name:                  pulumi.String("example"),
    			AuthorizerFunctionArn: pulumi.Any(exampleAwsLambdaFunction.Arn),
    			SigningDisabled:       pulumi.Bool(false),
    			Status:                pulumi.String("ACTIVE"),
    			TokenKeyName:          pulumi.String("Token-Header"),
    			TokenSigningPublicKeys: pulumi.StringMap{
    				"Key1": invokeFile.Result,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    using Std = Pulumi.Std;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Iot.Authorizer("example", new()
        {
            Name = "example",
            AuthorizerFunctionArn = exampleAwsLambdaFunction.Arn,
            SigningDisabled = false,
            Status = "ACTIVE",
            TokenKeyName = "Token-Header",
            TokenSigningPublicKeys = 
            {
                { "Key1", Std.File.Invoke(new()
                {
                    Input = "test-fixtures/iot-authorizer-signing-key.pem",
                }).Apply(invoke => invoke.Result) },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.iot.Authorizer;
    import com.pulumi.aws.iot.AuthorizerArgs;
    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 Authorizer("example", AuthorizerArgs.builder()        
                .name("example")
                .authorizerFunctionArn(exampleAwsLambdaFunction.arn())
                .signingDisabled(false)
                .status("ACTIVE")
                .tokenKeyName("Token-Header")
                .tokenSigningPublicKeys(Map.of("Key1", StdFunctions.file(FileArgs.builder()
                    .input("test-fixtures/iot-authorizer-signing-key.pem")
                    .build()).result()))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:iot:Authorizer
        properties:
          name: example
          authorizerFunctionArn: ${exampleAwsLambdaFunction.arn}
          signingDisabled: false
          status: ACTIVE
          tokenKeyName: Token-Header
          tokenSigningPublicKeys:
            Key1:
              fn::invoke:
                Function: std:file
                Arguments:
                  input: test-fixtures/iot-authorizer-signing-key.pem
                Return: result
    

    Create Authorizer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Authorizer(name: string, args: AuthorizerArgs, opts?: CustomResourceOptions);
    @overload
    def Authorizer(resource_name: str,
                   args: AuthorizerArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Authorizer(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   authorizer_function_arn: Optional[str] = None,
                   enable_caching_for_http: Optional[bool] = None,
                   name: Optional[str] = None,
                   signing_disabled: Optional[bool] = None,
                   status: Optional[str] = None,
                   token_key_name: Optional[str] = None,
                   token_signing_public_keys: Optional[Mapping[str, str]] = None)
    func NewAuthorizer(ctx *Context, name string, args AuthorizerArgs, opts ...ResourceOption) (*Authorizer, error)
    public Authorizer(string name, AuthorizerArgs args, CustomResourceOptions? opts = null)
    public Authorizer(String name, AuthorizerArgs args)
    public Authorizer(String name, AuthorizerArgs args, CustomResourceOptions options)
    
    type: aws:iot:Authorizer
    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 AuthorizerArgs
    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 AuthorizerArgs
    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 AuthorizerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthorizerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthorizerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var exampleauthorizerResourceResourceFromIotauthorizer = new Aws.Iot.Authorizer("exampleauthorizerResourceResourceFromIotauthorizer", new()
    {
        AuthorizerFunctionArn = "string",
        EnableCachingForHttp = false,
        Name = "string",
        SigningDisabled = false,
        Status = "string",
        TokenKeyName = "string",
        TokenSigningPublicKeys = 
        {
            { "string", "string" },
        },
    });
    
    example, err := iot.NewAuthorizer(ctx, "exampleauthorizerResourceResourceFromIotauthorizer", &iot.AuthorizerArgs{
    	AuthorizerFunctionArn: pulumi.String("string"),
    	EnableCachingForHttp:  pulumi.Bool(false),
    	Name:                  pulumi.String("string"),
    	SigningDisabled:       pulumi.Bool(false),
    	Status:                pulumi.String("string"),
    	TokenKeyName:          pulumi.String("string"),
    	TokenSigningPublicKeys: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampleauthorizerResourceResourceFromIotauthorizer = new Authorizer("exampleauthorizerResourceResourceFromIotauthorizer", AuthorizerArgs.builder()        
        .authorizerFunctionArn("string")
        .enableCachingForHttp(false)
        .name("string")
        .signingDisabled(false)
        .status("string")
        .tokenKeyName("string")
        .tokenSigningPublicKeys(Map.of("string", "string"))
        .build());
    
    exampleauthorizer_resource_resource_from_iotauthorizer = aws.iot.Authorizer("exampleauthorizerResourceResourceFromIotauthorizer",
        authorizer_function_arn="string",
        enable_caching_for_http=False,
        name="string",
        signing_disabled=False,
        status="string",
        token_key_name="string",
        token_signing_public_keys={
            "string": "string",
        })
    
    const exampleauthorizerResourceResourceFromIotauthorizer = new aws.iot.Authorizer("exampleauthorizerResourceResourceFromIotauthorizer", {
        authorizerFunctionArn: "string",
        enableCachingForHttp: false,
        name: "string",
        signingDisabled: false,
        status: "string",
        tokenKeyName: "string",
        tokenSigningPublicKeys: {
            string: "string",
        },
    });
    
    type: aws:iot:Authorizer
    properties:
        authorizerFunctionArn: string
        enableCachingForHttp: false
        name: string
        signingDisabled: false
        status: string
        tokenKeyName: string
        tokenSigningPublicKeys:
            string: string
    

    Authorizer Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Authorizer resource accepts the following input properties:

    AuthorizerFunctionArn string
    The ARN of the authorizer's Lambda function.
    EnableCachingForHttp bool
    Specifies whether the HTTP caching is enabled or not. Default: false.
    Name string
    The name of the authorizer.
    SigningDisabled bool
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    Status string
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    TokenKeyName string
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    TokenSigningPublicKeys Dictionary<string, string>
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    AuthorizerFunctionArn string
    The ARN of the authorizer's Lambda function.
    EnableCachingForHttp bool
    Specifies whether the HTTP caching is enabled or not. Default: false.
    Name string
    The name of the authorizer.
    SigningDisabled bool
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    Status string
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    TokenKeyName string
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    TokenSigningPublicKeys map[string]string
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    authorizerFunctionArn String
    The ARN of the authorizer's Lambda function.
    enableCachingForHttp Boolean
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name String
    The name of the authorizer.
    signingDisabled Boolean
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status String
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    tokenKeyName String
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    tokenSigningPublicKeys Map<String,String>
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    authorizerFunctionArn string
    The ARN of the authorizer's Lambda function.
    enableCachingForHttp boolean
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name string
    The name of the authorizer.
    signingDisabled boolean
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status string
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    tokenKeyName string
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    tokenSigningPublicKeys {[key: string]: string}
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    authorizer_function_arn str
    The ARN of the authorizer's Lambda function.
    enable_caching_for_http bool
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name str
    The name of the authorizer.
    signing_disabled bool
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status str
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    token_key_name str
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    token_signing_public_keys Mapping[str, str]
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    authorizerFunctionArn String
    The ARN of the authorizer's Lambda function.
    enableCachingForHttp Boolean
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name String
    The name of the authorizer.
    signingDisabled Boolean
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status String
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    tokenKeyName String
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    tokenSigningPublicKeys Map<String>
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Authorizer resource produces the following output properties:

    Arn string
    The ARN of the authorizer.
    Id string
    The provider-assigned unique ID for this managed resource.
    Arn string
    The ARN of the authorizer.
    Id string
    The provider-assigned unique ID for this managed resource.
    arn String
    The ARN of the authorizer.
    id String
    The provider-assigned unique ID for this managed resource.
    arn string
    The ARN of the authorizer.
    id string
    The provider-assigned unique ID for this managed resource.
    arn str
    The ARN of the authorizer.
    id str
    The provider-assigned unique ID for this managed resource.
    arn String
    The ARN of the authorizer.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Authorizer Resource

    Get an existing Authorizer 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?: AuthorizerState, opts?: CustomResourceOptions): Authorizer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            authorizer_function_arn: Optional[str] = None,
            enable_caching_for_http: Optional[bool] = None,
            name: Optional[str] = None,
            signing_disabled: Optional[bool] = None,
            status: Optional[str] = None,
            token_key_name: Optional[str] = None,
            token_signing_public_keys: Optional[Mapping[str, str]] = None) -> Authorizer
    func GetAuthorizer(ctx *Context, name string, id IDInput, state *AuthorizerState, opts ...ResourceOption) (*Authorizer, error)
    public static Authorizer Get(string name, Input<string> id, AuthorizerState? state, CustomResourceOptions? opts = null)
    public static Authorizer get(String name, Output<String> id, AuthorizerState 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.
    The following state arguments are supported:
    Arn string
    The ARN of the authorizer.
    AuthorizerFunctionArn string
    The ARN of the authorizer's Lambda function.
    EnableCachingForHttp bool
    Specifies whether the HTTP caching is enabled or not. Default: false.
    Name string
    The name of the authorizer.
    SigningDisabled bool
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    Status string
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    TokenKeyName string
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    TokenSigningPublicKeys Dictionary<string, string>
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    Arn string
    The ARN of the authorizer.
    AuthorizerFunctionArn string
    The ARN of the authorizer's Lambda function.
    EnableCachingForHttp bool
    Specifies whether the HTTP caching is enabled or not. Default: false.
    Name string
    The name of the authorizer.
    SigningDisabled bool
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    Status string
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    TokenKeyName string
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    TokenSigningPublicKeys map[string]string
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    arn String
    The ARN of the authorizer.
    authorizerFunctionArn String
    The ARN of the authorizer's Lambda function.
    enableCachingForHttp Boolean
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name String
    The name of the authorizer.
    signingDisabled Boolean
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status String
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    tokenKeyName String
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    tokenSigningPublicKeys Map<String,String>
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    arn string
    The ARN of the authorizer.
    authorizerFunctionArn string
    The ARN of the authorizer's Lambda function.
    enableCachingForHttp boolean
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name string
    The name of the authorizer.
    signingDisabled boolean
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status string
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    tokenKeyName string
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    tokenSigningPublicKeys {[key: string]: string}
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    arn str
    The ARN of the authorizer.
    authorizer_function_arn str
    The ARN of the authorizer's Lambda function.
    enable_caching_for_http bool
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name str
    The name of the authorizer.
    signing_disabled bool
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status str
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    token_key_name str
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    token_signing_public_keys Mapping[str, str]
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.
    arn String
    The ARN of the authorizer.
    authorizerFunctionArn String
    The ARN of the authorizer's Lambda function.
    enableCachingForHttp Boolean
    Specifies whether the HTTP caching is enabled or not. Default: false.
    name String
    The name of the authorizer.
    signingDisabled Boolean
    Specifies whether AWS IoT validates the token signature in an authorization request. Default: false.
    status String
    The status of Authorizer request at creation. Valid values: ACTIVE, INACTIVE. Default: ACTIVE.
    tokenKeyName String
    The name of the token key used to extract the token from the HTTP headers. This value is required if signing is enabled in your authorizer.
    tokenSigningPublicKeys Map<String>
    The public keys used to verify the digital signature returned by your custom authentication service. This value is required if signing is enabled in your authorizer.

    Import

    Using pulumi import, import IOT Authorizers using the name. For example:

    $ pulumi import aws:iot/authorizer:Authorizer example example
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi