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-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,7 @@ Available targets:
83
83
| config_source | S3 source for config | string | `` | no |
84
84
| delimiter | Delimiter to be used between `name`, `namespace`, `stage`, etc. | string |`-`| no |
85
85
| description | Short description of the Environment | string | `` | no |
86
+
| elb_scheme | Specify `internal` if you want to create an internal load balancer in your Amazon VPC so that your Elastic Beanstalk application cannot be accessed from outside your Amazon VPC | string |`public`| no |
86
87
| enable_log_publication_control | Copy the log files for your application's Amazon EC2 instances to the Amazon S3 bucket associated with your application. | string |`false`| no |
87
88
| enable_managed_actions | Enable managed platform updates. When you set this to true, you must also specify a `PreferredStartTime` and `UpdateLevel`| string |`true`| no |
88
89
| enable_stream_logs | Whether to create groups in CloudWatch Logs for proxy and deployment logs, and stream logs from each instance in your environment. | string |`false`| no |
@@ -298,8 +299,8 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
Copy file name to clipboardExpand all lines: docs/terraform.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@
20
20
| config_source | S3 source for config | string | `` | no |
21
21
| delimiter | Delimiter to be used between `name`, `namespace`, `stage`, etc. | string |`-`| no |
22
22
| description | Short description of the Environment | string | `` | no |
23
+
| elb_scheme | Specify `internal` if you want to create an internal load balancer in your Amazon VPC so that your Elastic Beanstalk application cannot be accessed from outside your Amazon VPC | string |`public`| no |
23
24
| enable_log_publication_control | Copy the log files for your application's Amazon EC2 instances to the Amazon S3 bucket associated with your application. | string |`false`| no |
24
25
| enable_managed_actions | Enable managed platform updates. When you set this to true, you must also specify a `PreferredStartTime` and `UpdateLevel`| string |`true`| no |
25
26
| enable_stream_logs | Whether to create groups in CloudWatch Logs for proxy and deployment logs, and stream logs from each instance in your environment. | string |`false`| no |
Copy file name to clipboardExpand all lines: variables.tf
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -371,3 +371,8 @@ variable "force_destroy" {
371
371
default=false
372
372
description="Destroy S3 bucket for load balancer logs"
373
373
}
374
+
375
+
variable"elb_scheme" {
376
+
default="public"
377
+
description="Specify `internal` if you want to create an internal load balancer in your Amazon VPC so that your Elastic Beanstalk application cannot be accessed from outside your Amazon VPC"
0 commit comments