Skip to content

Commit

Permalink
output sentence casing
Browse files Browse the repository at this point in the history
  • Loading branch information
drewmullen committed Apr 28, 2022
1 parent cef5ebb commit 9595b11
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions examples/basic/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "tags" {
description = "output of tags."
description = "Output of tags."
value = module.labels.tags
}

output "id" {
description = "computed id."
description = "Computed id."
value = module.labels.id
}
14 changes: 7 additions & 7 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
output "tags" {
description = "output of tags in awscc provider format."
description = "Output of tags in awscc provider format."
value = local.tags
}

output "tags_aws" {
description = "output of tags in aws provider format."
description = "Output of tags in aws provider format."
value = local.tags_aws
}

output "id" {
description = "output of computed id based on inputs to module."
description = "Output of computed id based on inputs to module."
value = local.ordered_id
}

output "name" {
description = "name of workload."
description = "Name of workload."
value = local.vars["name"]
}

output "namespace" {
description = "namespace of workload."
description = "Namespace of workload."
value = local.vars["namespace"]
}

output "account" {
description = "account of workload."
description = "Account of workload."
value = local.vars["account"]
}

output "env" {
description = "environment of workload."
description = "Environment of workload."
value = local.vars["env"]
}

0 comments on commit 9595b11

Please sign in to comment.