FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_lambda_alias

Creates a Lambda function alias. Creates an alias that points to the specified Lambda function version.

For information about Lambda and how to use it, see What is AWS Lambda? For information about function aliases, see CreateAlias in the API docs.

Example Usage

resource "aws_lambda_alias" "test_alias" {
		name = "testalias"
		description = "a sample description"
		function_name = "${aws_lambda_function.lambda_function_test.arn}"
		function_version = "$LATEST"
}

Argument Reference

Attributes Reference


See the source of this document at Terraform.io