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
| <aname="input_additional_security_groups"></a> [additional\_security\_groups](#input\_additional\_security\_groups)| List of security groups to be allowed to connect to the EC2 instances |`list(string)`|`[]`| no |
270
286
| <aname="input_additional_settings"></a> [additional\_settings](#input\_additional\_settings)| Additional Elastic Beanstalk setttings. For full list of options, see https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html| <pre>list(object({<br> namespace = string<br> name = string<br> value = string<br> }))</pre> |`[]`| no |
271
287
| <aname="input_additional_tag_map"></a> [additional\_tag\_map](#input\_additional\_tag\_map)| Additional tags for appending to tags\_as\_list\_of\_maps. Not added to `tags`. |`map(string)`|`{}`| no |
| <aname="input_allowed_security_groups"></a> [allowed\_security\_groups](#input\_allowed\_security\_groups)| List of security groups to add to the EC2 instances |`list(string)`|`[]`| no |
274
289
| <aname="input_ami_id"></a> [ami\_id](#input\_ami\_id)| The id of the AMI to associate with the Amazon EC2 instances |`string`|`null`| no |
275
290
| <aname="input_application_port"></a> [application\_port](#input\_application\_port)| Port application is listening on |`number`|`80`| no |
276
291
| <aname="input_application_subnets"></a> [application\_subnets](#input\_application\_subnets)| List of subnets to place EC2 instances |`list(string)`| n/a | yes |
@@ -344,6 +359,11 @@ Available targets:
344
359
| <aname="input_s3_bucket_encryption_enabled"></a> [s3\_bucket\_encryption\_enabled](#input\_s3\_bucket\_encryption\_enabled)| When set to 'true' the resource will have aes256 encryption enabled by default |`bool`|`true`| no |
345
360
| <aname="input_s3_bucket_versioning_enabled"></a> [s3\_bucket\_versioning\_enabled](#input\_s3\_bucket\_versioning\_enabled)| When set to 'true' the s3 origin bucket will have versioning enabled |`bool`|`true`| no |
346
361
| <aname="input_scheduled_actions"></a> [scheduled\_actions](#input\_scheduled\_actions)| Define a list of scheduled actions | <pre>list(object({<br> name = string<br> minsize = string<br> maxsize = string<br> desiredcapacity = string<br> starttime = string<br> endtime = string<br> recurrence = string<br> suspend = bool<br> }))</pre> |`[]`| no |
362
+
| <aname="input_security_group_description"></a> [security\_group\_description](#input\_security\_group\_description)| The Security Group description. |`string`|`"Elastic Beanstalk environment Security Group"`| no |
363
+
| <aname="input_security_group_enabled"></a> [security\_group\_enabled](#input\_security\_group\_enabled)| Whether to create Security Group. |`bool`|`true`| no |
364
+
| <aname="input_security_group_rules"></a> [security\_group\_rules](#input\_security\_group\_rules)| A list of maps of Security Group rules. <br>The values of map is fully complated with `aws_security_group_rule` resource. <br>To get more info see https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule . |`list(any)`| <pre>[<br> {<br> "cidr_blocks": [<br> "0.0.0.0/0"<br> ],<br> "description": "Allow all outbound traffic",<br> "from_port": 0,<br> "protocol": "-1",<br> "to_port": 65535,<br> "type": "egress"<br> }<br>]</pre> | no |
365
+
| <aname="input_security_group_use_name_prefix"></a> [security\_group\_use\_name\_prefix](#input\_security\_group\_use\_name\_prefix)| Whether to create a default Security Group with unique name beginning with the normalized prefix. |`bool`|`false`| no |
366
+
| <aname="input_security_groups"></a> [security\_groups](#input\_security\_groups)| A list of Security Group IDs to associate with EC2 instances. |`list(string)`|`[]`| no |
347
367
| <aname="input_solution_stack_name"></a> [solution\_stack\_name](#input\_solution\_stack\_name)| Elastic Beanstalk stack, e.g. Docker, Go, Node, Java, IIS. For more info, see https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html|`string`| n/a | yes |
348
368
| <aname="input_spot_fleet_on_demand_above_base_percentage"></a> [spot\_fleet\_on\_demand\_above\_base\_percentage](#input\_spot\_fleet\_on\_demand\_above\_base\_percentage)| The percentage of On-Demand Instances as part of additional capacity that your Auto Scaling group provisions beyond the SpotOnDemandBase instances. This option is relevant only when enable\_spot\_instances is true. |`number`|`-1`| no |
349
369
| <aname="input_spot_fleet_on_demand_base"></a> [spot\_fleet\_on\_demand\_base](#input\_spot\_fleet\_on\_demand\_base)| The minimum number of On-Demand Instances that your Auto Scaling group provisions before considering Spot Instances as your environment scales up. This option is relevant only when enable\_spot\_instances is true. |`number`|`0`| no |
@@ -378,7 +398,9 @@ Available targets:
378
398
| <aname="output_load_balancers"></a> [load\_balancers](#output\_load\_balancers)| Elastic Load Balancers in use by this environment |
379
399
| <aname="output_name"></a> [name](#output\_name)| Name |
380
400
| <aname="output_queues"></a> [queues](#output\_queues)| SQS queues in use by this environment |
381
-
| <aname="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id)| Security group id |
401
+
| <aname="output_security_group_arn"></a> [security\_group\_arn](#output\_security\_group\_arn)| Elastic Beanstalk environment Security Group ARN |
402
+
| <aname="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id)| Elastic Beanstalk environment Security Group ID |
403
+
| <aname="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name)| Elastic Beanstalk environment Security Group name |
382
404
| <aname="output_setting"></a> [setting](#output\_setting)| Settings specifically set for this environment |
383
405
| <aname="output_tier"></a> [tier](#output\_tier)| The environment tier |
384
406
| <aname="output_triggers"></a> [triggers](#output\_triggers)| Autoscaling triggers in use by this environment |
@@ -532,8 +554,8 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
0 commit comments