-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
59 lines (48 loc) · 1.85 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
output "lambda_function_name" {
description = "The name of the Lambda Function"
value = aws_lambda_function.this.function_name
}
output "lambda_function_arn" {
description = "The ARN of the Lambda Function"
value = aws_lambda_function.this.arn
}
output "lambda_function_role" {
description = "IAM role attached to the Lambda Function"
value = aws_lambda_function.this.role
}
output "lambda_function_filename" {
description = "The filename of the function zip archive"
value = aws_lambda_function.this.filename
}
output "lambda_function_handler" {
description = "The filename.handler-method value in your function"
value = aws_lambda_function.this.handler
}
output "lambda_function_runtime" {
description = "The identifier of the Lambda Function's runtime"
value = aws_lambda_function.this.runtime
}
output "lambda_function_last_modified" {
description = "The time when the Lambda Function was modified"
value = aws_lambda_function.this.last_modified
}
output "lambda_function_version" {
description = "Latest published version of your Lambda Function"
value = aws_lambda_function.this.version
}
output "lambda_function_source_code_size" {
description = "The size in bytes of the function .zip file"
value = aws_lambda_function.this.source_code_size
}
output "lambda_function_source_code_hash" {
description = "A base64-encoded SHA256 hash of the package file"
value = aws_lambda_function.this.source_code_hash
}
output "lambda_function_vpc_config" {
description = "A list of subnets and security groups associated tiwht the Lambda Function"
value = aws_lambda_function.this.vpc_config
}
output "lambda_function_image_uri" {
description = "A list of subnets and security groups associated tiwht the Lambda Function"
value = aws_lambda_function.this.image_uri
}