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-2
Original file line number
Diff line number
Diff line change
@@ -232,8 +232,8 @@ Available targets:
232
232
| deployment\_ignore\_health\_check | Do not cancel a deployment due to failed health checks |`bool`|`false`| no |
233
233
| deployment\_timeout | Number of seconds to wait for an instance to complete executing commands |`number`|`600`| no |
234
234
| description | Short description of the Environment |`string`|`""`| no |
235
-
| dns\_subdomain | The subdomain to create on Route53 for the EB environment. For the subdomain to be created, the `dns_zone_id` variable must be set as well |`string`|`""`| no |
236
-
| dns\_zone\_id | Route53 parent zone ID. The module will create sub-domain DNS record in the parent zone for the EB environment |`string`|`""`| no |
235
+
| dns\_subdomain | The subdomain to create on Route53 for the EB environment. For the subdomain ALIAS record to be created, the `dns_zone_id` variable must be set as well |`string`|`""`| no |
236
+
| dns\_zone\_id | Route53 parent zone ID. The module will create sub-domain DNS ALIAS record in the parent zone for the EB environment |`string`|`""`| no |
| 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 |
239
239
| enable\_log\_publication\_control | Copy the log files for your application's Amazon EC2 instances to the Amazon S3 bucket associated with your application |`bool`|`false`| no |
@@ -254,6 +254,7 @@ Available targets:
254
254
| id\_length\_limit | Limit `id` to this many characters.<br>Set to `0` for unlimited length.<br>Set to `null` for default, which is `0`.<br>Does not affect `id_full`. |`number`|`null`| no |
255
255
| instance\_refresh\_enabled | Enable weekly instance replacement. |`bool`|`true`| no |
256
256
| instance\_type | Instances type |`string`|`"t2.micro"`| no |
257
+
| ipv6\_enabled | Set to true to enable an AAAA DNS record to be set as well as the A record |`bool`|`false`| no |
257
258
| keypair | Name of SSH key that will be deployed on Elastic Beanstalk and DataPipeline instance. The key should be present in AWS |`string`|`""`| no |
258
259
| label\_order | The naming order of the id output and Name tag.<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 5 elements, but at least one must be present. |`list(string)`|`null`| no |
259
260
| loadbalancer\_certificate\_arn | Load Balancer SSL certificate ARN. The certificate must be present in AWS Certificate Manager |`string`|`""`| no |
description="Route53 parent zone ID. The module will create sub-domain DNS record in the parent zone for the EB environment"
38
+
description="Route53 parent zone ID. The module will create sub-domain DNS ALIAS record in the parent zone for the EB environment"
39
39
}
40
40
41
41
variable"dns_subdomain" {
42
42
type=string
43
43
default=""
44
-
description="The subdomain to create on Route53 for the EB environment. For the subdomain to be created, the `dns_zone_id` variable must be set as well"
44
+
description="The subdomain to create on Route53 for the EB environment. For the subdomain ALIAS record to be created, the `dns_zone_id` variable must be set as well"
45
+
}
46
+
47
+
variable"ipv6_enabled" {
48
+
type=bool
49
+
default=false
50
+
description="Set to true to enable an AAAA DNS record to be set as well as the A record"
0 commit comments