-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cef5ebb
commit 9595b11
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} |