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
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23,17 +23,17 @@ module "" {
23
23
24
24
| Name | Description | Type | Default | Required |
25
25
|------|-------------|:----:|:-----:|:-----:|
26
-
| acm\_cert\_domain | Domain name of ACM-managed certificate | string |`*.mgmt.appzen.com`| no |
26
+
| acm\_cert\_domain | Domain name of ACM-managed certificate | string | `` | no |
27
27
| attributes | Suffix name with additional attributes (policy, role, etc.) | list |`<list>`| no |
28
-
| aws\_profile | - | string |`appzen`| no |
28
+
| aws\_profile | - | string | `` | no |
29
29
| delimiter | Delimiter to be used between `name`, `namespaces`, `attributes`, etc. | string |`-`| no |
30
30
| docker\_image | Docker image to use for task | string |`sonatype/nexus3`| no |
31
31
| docker\_memory | Hard limit on memory use for task container (default 256) | string |`2048`| no |
32
32
| docker\_memory\_reservation | Soft limit on memory use for task container (default 128) | string |`2048`| no |
33
33
| ecs\_cluster\_arn | ARN of ECS cluster in which the service will be deployed | string | `` | no |
34
34
| ecs\_desired\_count | Desired number of containers in the task (default 1) | string |`1`| no |
35
35
| ecs\_security\_group\_id | Security group ID of ECS cluster in which the service will be deployed | string | `` | no |
36
-
| environment | Environment (ex: `dev`, `qa`, `stage`, `prod`). (Second or top level namespace. Depending on namespacing options) | string |`MGMT`| no |
36
+
| environment | Environment (ex: `dev`, `qa`, `stage`, `prod`). (Second or top level namespace. Depending on namespacing options) | string |`mgmt`| no |
37
37
| instance\_type | AWS Instance type, if you change, make sure it is compatible with AMI, not all AMIs allow all instance types | string |`t3.medium`| no |
38
38
| key\_name | SSH key name to use | string |`devops-2018-12-04`| no |
39
39
| lb\_enable\_http | Enable HTTP listener in LB (http or https MUST be enabled) | string |`true`| no |
@@ -44,8 +44,8 @@ module "" {
44
44
| lb\_subnet\_ids | VPC subnet IDs in which to create the LB (unnecessary if neither lb_enable_https or lb_enable_http are true) | list |`<list>`| no |
45
45
| mount\_point | Host directory to map as /nexus-data in container | string | `` | no |
46
46
| name | Base name for resources | string |`nexus`| no |
47
-
| namespace-env | Prefix name with the environment. If true, format is: <env>-<name>| string |`true`| no |
48
-
| 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 |
47
+
| namespace-env | Prefix name with the environment. If true, format is: {env}-{name}| string |`true`| no |
48
+
| 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 |
49
49
| organization | Organization name (Top level namespace). | string |`appzen`| no |
50
50
| region | - | string |`us-east-1`| no |
51
51
| tags | A map of additional tags | map |`<map>`| no |
Copy file name to clipboardExpand all lines: examples/cluster/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,8 +33,8 @@ Note that this example may create resources which cost money. Run `terraform des
33
33
| key\_name | SSH key name to use | string |`devops-2018-12-04`| no |
34
34
| lb\_ingress\_cidr\_blocks | CIDR block to whitelist for the load balancer | list |`<list>`| no |
35
35
| name | Base name for resources | string |`nexus`| no |
36
-
| namespace-env | Prefix name with the environment. If true, format is: <env>-<name>| string |`true`| no |
37
-
| 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 |
36
+
| namespace-env | Prefix name with the environment. If true, format is: {env}-{name}| string |`true`| no |
37
+
| 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 |
38
38
| organization | Organization name (Top level namespace). | string |`example`| no |
39
39
| region | - | string |`us-east-1`| no |
40
40
| tags | A map of additional tags | map |`<map>`| no |
Copy file name to clipboardExpand all lines: examples/cluster/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,12 +23,12 @@ variable "name" {
23
23
}
24
24
25
25
variable"namespace-env" {
26
-
description="Prefix name with the environment. If true, format is: <env>-<name>"
26
+
description="Prefix name with the environment. If true, format is: {env}-{name}"
27
27
default=true
28
28
}
29
29
30
30
variable"namespace-org" {
31
-
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>"
31
+
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>"
Copy file name to clipboardExpand all lines: variables.tf
+6-32Lines changed: 6 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ variable "delimiter" {
14
14
15
15
variable"environment" {
16
16
description="Environment (ex: `dev`, `qa`, `stage`, `prod`). (Second or top level namespace. Depending on namespacing options)"
17
-
default="MGMT"
17
+
default="mgmt"
18
18
}
19
19
20
20
variable"name" {
@@ -23,12 +23,12 @@ variable "name" {
23
23
}
24
24
25
25
variable"namespace-env" {
26
-
description="Prefix name with the environment. If true, format is: <env>-<name>"
26
+
description="Prefix name with the environment. If true, format is: {env}-{name}"
27
27
default=true
28
28
}
29
29
30
30
variable"namespace-org" {
31
-
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>"
31
+
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>"
32
32
default=false
33
33
}
34
34
@@ -49,11 +49,11 @@ variable "tags" {
49
49
variable"acm_cert_domain" {
50
50
description="Domain name of ACM-managed certificate"
51
51
type="string"
52
-
default="*.mgmt.appzen.com"
52
+
default=""
53
53
}
54
54
55
55
variable"aws_profile" {
56
-
default="appzen"
56
+
default=""
57
57
}
58
58
59
59
variable"docker_image" {
@@ -122,33 +122,7 @@ variable "lb_internal" {
122
122
variable"lb_ingress_cidr_blocks" {
123
123
description="CIDR block to whitelist for the load balancer"
0 commit comments