mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-18 09:38:33 +01:00
12 lines
434 B
Smarty
12 lines
434 B
Smarty
<powershell>
|
|
${pre_userdata}
|
|
|
|
[string]$EKSBinDir = "$env:ProgramFiles\Amazon\EKS"
|
|
[string]$EKSBootstrapScriptName = 'Start-EKSBootstrap.ps1'
|
|
[string]$EKSBootstrapScriptFile = "$EKSBinDir\$EKSBootstrapScriptName"
|
|
& $EKSBootstrapScriptFile -EKSClusterName ${cluster_name} -KubeletExtraArgs "${kubelet_extra_args}" 3>&1 4>&1 5>&1 6>&1
|
|
$LastError = if ($?) { 0 } else { $Error[0].Exception.HResult }
|
|
|
|
${additional_userdata}
|
|
</powershell>
|