Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
snemetz committed Dec 11, 2018
1 parent 33956f3 commit e7ab9e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <org>-<env>-<name> | 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 | `<map>` | no |
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `<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 <org>-<env>-<name> | 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 | `<map>` | no |
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 <org>-<env>-<name>"
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
}

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 <org>-<env>-<name>"
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
}

Expand Down

0 comments on commit e7ab9e4

Please sign in to comment.