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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,6 @@ Available targets:
61
61
lint Lint terraform code
62
62
63
63
```
64
-
65
64
## Inputs
66
65
67
66
| Name | Description | Type | Default | Required |
@@ -87,6 +86,7 @@ Available targets:
87
86
| 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 |
88
87
| enable_managed_actions | Enable managed platform updates. When you set this to true, you must also specify a `PreferredStartTime` and `UpdateLevel`| string |`true`| no |
89
88
| 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 |
89
+
| enhanced_reporting_enabled | Whether to enable "enhanced" health reporting for this environment. If false, "basic" reporting is used. When you set this to false, you must also set `enable_managed_actions` to false | string |`true`| no |
90
90
| env_default_key | Default ENV variable key for Elastic Beanstalk `aws:elasticbeanstalk:application:environment` setting | string |`DEFAULT_ENV_%d`| no |
91
91
| env_default_value | Default ENV variable value for Elastic Beanstalk `aws:elasticbeanstalk:application:environment` setting | string |`UNSET`| no |
92
92
| env_vars | Map of custom ENV variables to be provided to the Jenkins application running on Elastic Beanstalk, e.g. `env_vars = { JENKINS_USER = 'admin' JENKINS_PASS = 'xxxxxx' }`| map |`<map>`| no |
@@ -132,7 +132,7 @@ Available targets:
132
132
| updating_min_in_service | Minimum count of instances up during update | string |`1`| no |
133
133
| version_label | Elastic Beanstalk Application version to deploy | string | `` | no |
134
134
| vpc_id | ID of the VPC in which to provision the AWS resources | string | - | yes |
135
-
| wait_for_ready_timeout || string |`20m`| no |
135
+
| wait_for_ready_timeout |-| string |`20m`| no |
136
136
| zone_id | Route53 parent zone ID. The module will create sub-domain DNS records in the parent zone for the EB environment | string | `` | no |
137
137
138
138
## Outputs
@@ -241,7 +241,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
Copy file name to clipboardExpand all lines: docs/terraform.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,3 @@
1
-
2
1
## Inputs
3
2
4
3
| Name | Description | Type | Default | Required |
@@ -24,6 +23,7 @@
24
23
| 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 |
25
24
| enable_managed_actions | Enable managed platform updates. When you set this to true, you must also specify a `PreferredStartTime` and `UpdateLevel`| string |`true`| no |
26
25
| 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 |
26
+
| enhanced_reporting_enabled | Whether to enable "enhanced" health reporting for this environment. If false, "basic" reporting is used. When you set this to false, you must also set `enable_managed_actions` to false | string |`true`| no |
27
27
| env_default_key | Default ENV variable key for Elastic Beanstalk `aws:elasticbeanstalk:application:environment` setting | string |`DEFAULT_ENV_%d`| no |
28
28
| env_default_value | Default ENV variable value for Elastic Beanstalk `aws:elasticbeanstalk:application:environment` setting | string |`UNSET`| no |
29
29
| env_vars | Map of custom ENV variables to be provided to the Jenkins application running on Elastic Beanstalk, e.g. `env_vars = { JENKINS_USER = 'admin' JENKINS_PASS = 'xxxxxx' }`| map |`<map>`| no |
@@ -69,7 +69,7 @@
69
69
| updating_min_in_service | Minimum count of instances up during update | string |`1`| no |
70
70
| version_label | Elastic Beanstalk Application version to deploy | string | `` | no |
71
71
| vpc_id | ID of the VPC in which to provision the AWS resources | string | - | yes |
72
-
| wait_for_ready_timeout || string |`20m`| no |
72
+
| wait_for_ready_timeout |-| string |`20m`| no |
73
73
| zone_id | Route53 parent zone ID. The module will create sub-domain DNS records in the parent zone for the EB environment | string | `` | 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
@@ -35,6 +35,11 @@ variable "config_document" {
35
35
description="A JSON document describing the environment and instance metrics to publish to CloudWatch."
36
36
}
37
37
38
+
variable"enhanced_reporting_enabled" {
39
+
default=true
40
+
description="Whether to enable \"enhanced\" health reporting for this environment. If false, \"basic\" reporting is used. When you set this to false, you must also set `enable_managed_actions` to false"
41
+
}
42
+
38
43
variable"health_streaming_enabled" {
39
44
default=false
40
45
description="For environments with enhanced health reporting enabled, whether to create a group in CloudWatch Logs for environment health and archive Elastic Beanstalk environment health data. For information about enabling enhanced health, see aws:elasticbeanstalk:healthreporting:system."
0 commit comments