1. Packages
  2. AWS
  3. API Docs
  4. iot
  5. Authorizer
AWS v6.73.0 published on Wednesday, Mar 19, 2025 by Pulumi

aws.iot.Authorizer

Explore with Pulumi AI

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),
    },
    tags: {
        Name: "example",
    },
});
Copy
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,
    },
    tags={
        "Name": "example",
    })
Copy
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": pulumi.String(invokeFile.Result),
			},
			Tags: pulumi.StringMap{
				"Name": pulumi.String("example"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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) },
        },
        Tags = 
        {
            { "Name", "example" },
        },
    });

});
Copy
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()))
            .tags(Map.of("Name", "example"))
            .build());

    }
}
Copy
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
      tags:
        Name: example
Copy

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,
               tags: Optional[Mapping[str, 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 This property is required. string
The unique name of the resource.
args This property is required. AuthorizerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. AuthorizerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AuthorizerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AuthorizerArgs
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 exampleauthorizerResourceResourceFromIotauthorizer = new Aws.Iot.Authorizer("exampleauthorizerResourceResourceFromIotauthorizer", new()
{
    AuthorizerFunctionArn = "string",
    EnableCachingForHttp = false,
    Name = "string",
    SigningDisabled = false,
    Status = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TokenKeyName = "string",
    TokenSigningPublicKeys = 
    {
        { "string", "string" },
    },
});
Copy
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"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TokenKeyName: pulumi.String("string"),
	TokenSigningPublicKeys: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var exampleauthorizerResourceResourceFromIotauthorizer = new Authorizer("exampleauthorizerResourceResourceFromIotauthorizer", AuthorizerArgs.builder()
    .authorizerFunctionArn("string")
    .enableCachingForHttp(false)
    .name("string")
    .signingDisabled(false)
    .status("string")
    .tags(Map.of("string", "string"))
    .tokenKeyName("string")
    .tokenSigningPublicKeys(Map.of("string", "string"))
    .build());
Copy
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",
    tags={
        "string": "string",
    },
    token_key_name="string",
    token_signing_public_keys={
        "string": "string",
    })
Copy
const exampleauthorizerResourceResourceFromIotauthorizer = new aws.iot.Authorizer("exampleauthorizerResourceResourceFromIotauthorizer", {
    authorizerFunctionArn: "string",
    enableCachingForHttp: false,
    name: "string",
    signingDisabled: false,
    status: "string",
    tags: {
        string: "string",
    },
    tokenKeyName: "string",
    tokenSigningPublicKeys: {
        string: "string",
    },
});
Copy
type: aws:iot:Authorizer
properties:
    authorizerFunctionArn: string
    enableCachingForHttp: false
    name: string
    signingDisabled: false
    status: string
    tags:
        string: string
    tokenKeyName: string
    tokenSigningPublicKeys:
        string: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Authorizer resource accepts the following input properties:

AuthorizerFunctionArn This property is required. 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.
Tags Dictionary<string, string>
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
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 This property is required. 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.
Tags map[string]string
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
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 This property is required. 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.
tags Map<String,String>
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
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 This property is required. 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.
tags {[key: string]: string}
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
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 This property is required. 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.
tags Mapping[str, str]
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
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 This property is required. 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.
tags Map<String>
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
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.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The ARN of the authorizer.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the authorizer.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The ARN of the authorizer.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The ARN of the authorizer.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN of the authorizer.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, 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)
resources:  _:    type: aws:iot:Authorizer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
Tags Dictionary<string, string>
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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.
Tags map[string]string
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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.
tags Map<String,String>
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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.
tags {[key: string]: string}
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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.
tags Mapping[str, str]
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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.
tags Map<String>
Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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
Copy

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.