Add enable_docker_bridge (#302)

This commit is contained in:
michaelmccord
2019-03-13 12:30:41 -04:00
committed by Max Williams
parent d02bbc5e1e
commit 80085f50ab
3 changed files with 17 additions and 13 deletions

View File

@@ -24,6 +24,7 @@ locals {
root_iops = "0" # The amount of provisioned IOPS. This must be set with a volume_type of "io1".
key_name = "" # The key name that should be used for the instances in the autoscaling group
pre_userdata = "" # userdata to pre-append to the default userdata.
enable_docker_bridge = "false" # --enable-docker-bridge bootstrap.sh arg
additional_userdata = "" # userdata to append to the default userdata.
ebs_optimized = true # sets whether to use ebs optimization on supported types.
enable_monitoring = true # Enables/disables detailed monitoring.
@@ -66,6 +67,7 @@ locals {
kms_key_id = "" # KMS key ID used for encrypted block device. ASG must have access to this key. If not specified, the default KMS key will be used.
key_name = "" # The key name that should be used for the instances in the autoscaling group
pre_userdata = "" # userdata to pre-append to the default userdata.
enable_docker_bridge = "false" # --enable-docker-bridge bootstrap.sh arg
additional_userdata = "" # userdata to append to the default userdata.
ebs_optimized = true # sets whether to use ebs optimization on supported types.
enable_monitoring = true # Enables/disables detailed monitoring.