You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terraform module to provide consistent label names and tags for resources.
6
7
@@ -91,8 +92,8 @@ module "label" {
91
92
| environment | Environment (ex: `dev`, `qa`, `stage`, `prod`). (Second or top level namespace. Depending on namespacing options) | string | - | yes |
92
93
| monitor | TAG: Should resource be monitored | string |`UNDEF`| no |
93
94
| name | Base name for resource | string | - | yes |
94
-
| namespace-env | Prefix name with the environment. If true, format is: <env>-<name>| string |`true`| no |
95
-
| namespace-org | Prefix name with the organization. If true, format is: <org>-<envnamespacedname>. If both env and org namespaces are used, format will be <org>-<env>-<name>| string |`false`| no |
95
+
| namespace-env | Prefix name with the environment. If true, format is: `{env}-{name}`| string |`true`| no |
96
+
| namespace-org | Prefix name with the organization. If true, format is: `{org}-{env namespaced name}`. If both env and org namespaces are used, format will be `{org}-{env}-{name}`| string |`false`| no |
96
97
| organization | Organization name (Top level namespace) | string | `` | no |
97
98
| owner | TAG: Owner of the service | string |`UNDEF`| no |
Copy file name to clipboardExpand all lines: variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,12 +33,12 @@ variable "name" {
33
33
}
34
34
35
35
variable"namespace-env" {
36
-
description="Prefix name with the environment. If true, format is: <env>-<name>"
36
+
description="Prefix name with the environment. If true, format is: `{env}-{name}`"
37
37
default=true
38
38
}
39
39
40
40
variable"namespace-org" {
41
-
description="Prefix name with the organization. If true, format is: <org>-<env namespaced name>. If both env and org namespaces are used, format will be <org>-<env>-<name>"
41
+
description="Prefix name with the organization. If true, format is: `{org}-{env namespaced name}`. If both env and org namespaces are used, format will be `{org}-{env}-{name}`"
0 commit comments