Skip to content

Commit

Permalink
change output
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Natarov authored and Vitaliy Natarov committed Jan 5, 2022
1 parent 51cc08c commit 22f168f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ module "glue_trigger" {
- `glue_schema_schema_checkpoint` - The version number of the checkpoint (the last time the compatibility mode was changed).
- `glue_user_defined_function_id` - The id of the Glue User Defined Function.
- `glue_user_defined_function_arn` - The ARN of the Glue User Defined Function.
- `glue_user_defined_function_create_date` - The time at which the function was created.
- `glue_user_defined_function_create_time` - The time at which the function was created.


## Authors
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ output "glue_user_defined_function_arn" {
value = element(concat(aws_glue_user_defined_function.glue_user_defined_function.*.arn, [""]), 0)
}

output "glue_user_defined_function_create_date" {
output "glue_user_defined_function_create_time" {
description = "The time at which the function was created."
value = element(concat(aws_glue_user_defined_function.glue_user_defined_function.*.create_date, [""]), 0)
value = element(concat(aws_glue_user_defined_function.glue_user_defined_function.*.create_time, [""]), 0)
}

0 comments on commit 22f168f

Please sign in to comment.