Skip to content

Commit 02542e5

Browse files
committed
revert
1 parent 7b65a65 commit 02542e5

File tree

4 files changed

+0
-36
lines changed

4 files changed

+0
-36
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -898,11 +898,8 @@ No modules.
898898
| <a name="output_lambda_function_url_id"></a> [lambda\_function\_url\_id](#output\_lambda\_function\_url\_id) | The Lambda Function URL generated id |
899899
| <a name="output_lambda_function_version"></a> [lambda\_function\_version](#output\_lambda\_function\_version) | Latest published version of Lambda Function |
900900
| <a name="output_lambda_layer_arn"></a> [lambda\_layer\_arn](#output\_lambda\_layer\_arn) | The ARN of the Lambda Layer with version |
901-
| <a name="output_lambda_layer_code_sha256"></a> [lambda\_layer\_code\_sha256](#output\_lambda\_layer\_code\_sha256) | Base64-encoded representation of raw SHA-256 sum of the zip file |
902901
| <a name="output_lambda_layer_created_date"></a> [lambda\_layer\_created\_date](#output\_lambda\_layer\_created\_date) | The date Lambda Layer resource was created |
903902
| <a name="output_lambda_layer_layer_arn"></a> [lambda\_layer\_layer\_arn](#output\_lambda\_layer\_layer\_arn) | The ARN of the Lambda Layer without version |
904-
| <a name="output_lambda_layer_signing_job_arn"></a> [lambda\_layer\_signing\_job\_arn](#output\_lambda\_layer\_signing\_job\_arn) | ARN of a signing job |
905-
| <a name="output_lambda_layer_signing_profile_version_arn"></a> [lambda\_layer\_signing\_profile\_version\_arn](#output\_lambda\_layer\_signing\_profile\_version\_arn) | ARN for a signing profile version |
906903
| <a name="output_lambda_layer_source_code_size"></a> [lambda\_layer\_source\_code\_size](#output\_lambda\_layer\_source\_code\_size) | The size in bytes of the Lambda Layer .zip file |
907904
| <a name="output_lambda_layer_version"></a> [lambda\_layer\_version](#output\_lambda\_layer\_version) | The Lambda Layer version |
908905
| <a name="output_lambda_role_arn"></a> [lambda\_role\_arn](#output\_lambda\_role\_arn) | The ARN of the IAM role created for the Lambda Function |

examples/complete/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,8 @@ No inputs.
8484
| <a name="output_lambda_function_url_id"></a> [lambda\_function\_url\_id](#output\_lambda\_function\_url\_id) | The Lambda Function URL generated id |
8585
| <a name="output_lambda_function_version"></a> [lambda\_function\_version](#output\_lambda\_function\_version) | Latest published version of Lambda Function |
8686
| <a name="output_lambda_layer_arn"></a> [lambda\_layer\_arn](#output\_lambda\_layer\_arn) | The ARN of the Lambda Layer with version |
87-
| <a name="output_lambda_layer_code_sha256"></a> [lambda\_layer\_code\_sha256](#output\_lambda\_layer\_code\_sha256) | Base64-encoded representation of raw SHA-256 sum of the zip file |
8887
| <a name="output_lambda_layer_created_date"></a> [lambda\_layer\_created\_date](#output\_lambda\_layer\_created\_date) | The date Lambda Layer resource was created |
8988
| <a name="output_lambda_layer_layer_arn"></a> [lambda\_layer\_layer\_arn](#output\_lambda\_layer\_layer\_arn) | The ARN of the Lambda Layer without version |
90-
| <a name="output_lambda_layer_signing_job_arn"></a> [lambda\_layer\_signing\_job\_arn](#output\_lambda\_layer\_signing\_job\_arn) | ARN of a signing job |
91-
| <a name="output_lambda_layer_signing_profile_version_arn"></a> [lambda\_layer\_signing\_profile\_version\_arn](#output\_lambda\_layer\_signing\_profile\_version\_arn) | ARN for a signing profile version |
9289
| <a name="output_lambda_layer_source_code_size"></a> [lambda\_layer\_source\_code\_size](#output\_lambda\_layer\_source\_code\_size) | The size in bytes of the Lambda Layer .zip file |
9390
| <a name="output_lambda_layer_version"></a> [lambda\_layer\_version](#output\_lambda\_layer\_version) | The Lambda Layer version |
9491
| <a name="output_lambda_role_arn"></a> [lambda\_role\_arn](#output\_lambda\_role\_arn) | The ARN of the IAM role created for the Lambda Function |

examples/complete/outputs.tf

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -91,21 +91,6 @@ output "lambda_layer_version" {
9191
value = module.lambda_function.lambda_layer_version
9292
}
9393

94-
output "lambda_layer_code_sha256" {
95-
description = "Base64-encoded representation of raw SHA-256 sum of the zip file"
96-
value = module.lambda_function.lambda_layer_code_sha256
97-
}
98-
99-
output "lambda_layer_signing_job_arn" {
100-
description = "ARN of a signing job"
101-
value = module.lambda_function.lambda_layer_signing_job_arn
102-
}
103-
104-
output "lambda_layer_signing_profile_version_arn" {
105-
description = "ARN for a signing profile version"
106-
value = module.lambda_function.lambda_layer_signing_profile_version_arn
107-
}
108-
10994
# IAM Role
11095
output "lambda_role_arn" {
11196
description = "The ARN of the IAM role created for the Lambda Function"

outputs.tf

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ output "lambda_layer_arn" {
8181
value = try(aws_lambda_layer_version.this[0].arn, "")
8282
}
8383

84-
output "lambda_layer_code_sha256" {
85-
description = "Base64-encoded representation of raw SHA-256 sum of the zip file"
86-
value = try(aws_lambda_layer_version.this[0].code_sha256, "")
87-
}
88-
8984
output "lambda_layer_layer_arn" {
9085
description = "The ARN of the Lambda Layer without version"
9186
value = try(aws_lambda_layer_version.this[0].layer_arn, "")
@@ -96,16 +91,6 @@ output "lambda_layer_created_date" {
9691
value = try(aws_lambda_layer_version.this[0].created_date, "")
9792
}
9893

99-
output "lambda_layer_signing_job_arn" {
100-
description = "ARN of a signing job"
101-
value = try(aws_lambda_layer_version.this[0].signing_job_arn, "")
102-
}
103-
104-
output "lambda_layer_signing_profile_version_arn" {
105-
description = "ARN for a signing profile version"
106-
value = try(aws_lambda_layer_version.this[0].signing_profile_version_arn, "")
107-
}
108-
10994
output "lambda_layer_source_code_size" {
11095
description = "The size in bytes of the Lambda Layer .zip file"
11196
value = try(aws_lambda_layer_version.this[0].source_code_size, "")

0 commit comments

Comments
 (0)