-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathoutputs.tf
84 lines (68 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
output "ses_domain_identity_arn" {
description = "The ARN of the domain identity"
value = aws_ses_domain_identity.default.arn
}
output "ses_domain_identity_verification_arn" {
description = "The ARN of the domain identity"
value = aws_ses_domain_identity_verification.default.arn
}
output "artifact_git_ref" {
description = "Git commit hash corresponding to the artifact"
value = module.artifact.git_ref
}
output "artifact_file" {
description = "Full path to the locally downloaded artifact"
value = module.artifact.file
}
output "artifact_url" {
description = "URL corresponding to the artifact"
value = module.artifact.url
}
output "artifact_base64sha256" {
description = "Base64 encoded SHA256 hash of the artifact file"
value = module.artifact.base64sha256
}
output "lambda_iam_policy_id" {
description = "Lamnda IAM Policy ID"
value = aws_iam_policy.lambda.id
}
output "lambda_iam_policy_name" {
description = "Lamnda IAM Policy name"
value = aws_iam_policy.lambda.name
}
output "lambda_iam_policy_arn" {
description = "Lamnda IAM Policy ARN"
value = aws_iam_policy.lambda.arn
}
output "lambda_function_arn" {
description = "Lamnda Function ARN"
value = aws_lambda_function.default.arn
}
output "lambda_function_version" {
description = "Latest published version of the Lambda Function"
value = aws_lambda_function.default.version
}
output "lambda_function_source_code_size" {
description = "The size in bytes of the Lambda Function .zip file"
value = aws_lambda_function.default.source_code_size
}
output "s3_bucket_id" {
description = "Lamnda IAM Policy name"
value = aws_s3_bucket.default.id
}
output "s3_bucket_arn" {
description = "Lamnda IAM Policy ARN"
value = aws_s3_bucket.default.arn
}
output "s3_bucket_domain_name" {
description = "Lamnda IAM Policy ARN"
value = aws_s3_bucket.default.bucket_domain_name
}
output "ses_receipt_rule_name" {
description = "The name of the SES receipt rule"
value = aws_ses_receipt_rule.default.name
}
output "ses_receipt_rule_set_name" {
description = "The name of the SES receipt rule set"
value = aws_ses_receipt_rule.default.rule_set_name
}