diff --git a/README.md b/README.md index 224502f..b60ff48 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ module "" { | mount\_point | Host directory to map as /nexus-data in container | string | `` | no | | name | Base name for resources | string | `nexus` | no | | namespace-env | Prefix name with the environment. If true, format is: {env}-{name} | string | `true` | no | -| 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 -- | string | `false` | no | +| 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 | | organization | Organization name (Top level namespace). | string | `appzen` | no | | region | - | string | `us-east-1` | no | | tags | A map of additional tags | map | `` | no | diff --git a/examples/cluster/README.md b/examples/cluster/README.md index 8b02963..66404eb 100644 --- a/examples/cluster/README.md +++ b/examples/cluster/README.md @@ -34,7 +34,7 @@ Note that this example may create resources which cost money. Run `terraform des | lb\_ingress\_cidr\_blocks | CIDR block to whitelist for the load balancer | list | `` | no | | name | Base name for resources | string | `nexus` | no | | namespace-env | Prefix name with the environment. If true, format is: {env}-{name} | string | `true` | no | -| 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 -- | string | `false` | no | +| 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 | | organization | Organization name (Top level namespace). | string | `example` | no | | region | - | string | `us-east-1` | no | | tags | A map of additional tags | map | `` | no | diff --git a/examples/cluster/variables.tf b/examples/cluster/variables.tf index e7f8411..6fc2451 100644 --- a/examples/cluster/variables.tf +++ b/examples/cluster/variables.tf @@ -28,7 +28,7 @@ variable "namespace-env" { } variable "namespace-org" { - 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 --" + 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}" default = false } diff --git a/variables.tf b/variables.tf index 9714ebe..d238aa2 100644 --- a/variables.tf +++ b/variables.tf @@ -28,7 +28,7 @@ variable "namespace-env" { } variable "namespace-org" { - 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 --" + 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}" default = false }