Skip to content

Commit 9595b11

Browse files
committed
output sentence casing
1 parent cef5ebb commit 9595b11

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

examples/basic/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
output "tags" {
2-
description = "output of tags."
2+
description = "Output of tags."
33
value = module.labels.tags
44
}
55

66
output "id" {
7-
description = "computed id."
7+
description = "Computed id."
88
value = module.labels.id
99
}

outputs.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
output "tags" {
2-
description = "output of tags in awscc provider format."
2+
description = "Output of tags in awscc provider format."
33
value = local.tags
44
}
55

66
output "tags_aws" {
7-
description = "output of tags in aws provider format."
7+
description = "Output of tags in aws provider format."
88
value = local.tags_aws
99
}
1010

1111
output "id" {
12-
description = "output of computed id based on inputs to module."
12+
description = "Output of computed id based on inputs to module."
1313
value = local.ordered_id
1414
}
1515

1616
output "name" {
17-
description = "name of workload."
17+
description = "Name of workload."
1818
value = local.vars["name"]
1919
}
2020

2121
output "namespace" {
22-
description = "namespace of workload."
22+
description = "Namespace of workload."
2323
value = local.vars["namespace"]
2424
}
2525

2626
output "account" {
27-
description = "account of workload."
27+
description = "Account of workload."
2828
value = local.vars["account"]
2929
}
3030

3131
output "env" {
32-
description = "environment of workload."
32+
description = "Environment of workload."
3333
value = local.vars["env"]
3434
}

0 commit comments

Comments
 (0)