Skip to content

Commit 3c1882d

Browse files
committed
removing email requirement
1 parent fd23762 commit 3c1882d

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,46 @@ module "target_group" {
103103
```
104104

105105
Please refer to examples directory [link](examples) for references.
106+
107+
## Requirements
108+
109+
| Name | Version |
110+
|------|---------|
111+
| terraform | >= 0.14 |
112+
| aws | ~> 3.29 |
113+
114+
## Providers
115+
116+
| Name | Version |
117+
|------|---------|
118+
| aws | ~> 3.29 |
119+
120+
## Inputs
121+
122+
| Name | Description | Type | Default | Required |
123+
|------|-------------|------|---------|:--------:|
124+
| account\_id | (Required) AWS account id (used to pull values from shared base module like vpc info, subnet ids) | `any` | n/a | yes |
125+
| alb\_action\_type | n/a | `string` | `"forward"` | no |
126+
| alb\_cert\_arn | alb cert arn | `string` | `""` | no |
127+
| alb\_ssl\_policy | alb ssl policy | `string` | `""` | no |
128+
| aws\_region | The AWS region to create resources | `string` | `"us-west-2"` | no |
129+
| deregistration\_delay | n/a | `string` | `"300"` | no |
130+
| healthcheck\_interval | n/a | `string` | `""` | no |
131+
| healthcheck\_matcher | healthcheck matcher (e.g. 200) | `string` | `""` | no |
132+
| healthcheck\_path | target group healthcheck path | `string` | `""` | no |
133+
| healthcheck\_timeout | n/a | `string` | `""` | no |
134+
| healthy\_threshold | target group healthcheck threshold | `string` | `""` | no |
135+
| lb\_port | n/a | `list` | <pre>[<br> 80<br>]</pre> | no |
136+
| lb\_protocol | n/a | `string` | `"HTTP"` | no |
137+
| prjid | (Required) Name of the project/stack e.g: mystack, nifieks, demoaci. Should not be changed after running 'tf apply' | `any` | n/a | yes |
138+
| profile\_to\_use | Getting values from ~/.aws/credentials | `string` | `"default"` | no |
139+
| stickiness | Target group sticky configuration | <pre>object({<br> cookie_duration = number<br> enabled = bool<br> })</pre> | `null` | no |
140+
| target\_type | n/a | `string` | `"instance"` | no |
141+
| teamid | (Required) Name of the team/group e.g. devops, dataengineering. Should not be changed after running 'tf apply' | `any` | n/a | yes |
142+
| unhealthy\_threshold | target group unheathy healthcheck threshold | `string` | `""` | no |
143+
144+
## Outputs
145+
146+
| Name | Description |
147+
|------|-------------|
148+
| target\_group\_arn | n/a |

0 commit comments

Comments
 (0)