mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-30 20:34:37 +02:00
Allow the userdata template to be replaced (#565)
* Allow the userdata template to be replaced * Address fmt issue * Rename 'customer_userdata' name to 'userdata_template_file' * Add support for userdata_template_extra_args * Add support for userdata_template_extra_args * fix merge conflicts * Fix merge problem that dropped the file load Add `platform` to the template expansion context Add `userdata_launch_template` to `launch_template_userdata`
This commit is contained in:
committed by
Max Williams
parent
c46d5fcb00
commit
4f552891ff
2
local.tf
2
local.tf
@@ -40,6 +40,8 @@ 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.
|
||||
userdata_template_file = "" # alternate template to use for userdata
|
||||
userdata_template_extra_args = {} # Additional arguments to use when expanding the userdata template file
|
||||
bootstrap_extra_args = "" # Extra arguments passed to the bootstrap.sh script from the EKS AMI (Amazon Machine Image).
|
||||
additional_userdata = "" # userdata to append to the default userdata.
|
||||
ebs_optimized = true # sets whether to use ebs optimization on supported types.
|
||||
|
||||
Reference in New Issue
Block a user