feat: Add interpreter option to wait_for_cluster_cmd (#795)

Co-authored-by: Vasilyev, Viacheslav <viacheslav.vasilyev@accenture.com>
Co-authored-by: Thierno IB. BARRY <ibrahima.br@gmail.com>
This commit is contained in:
Viacheslav Vasilyev
2020-03-20 22:34:33 +02:00
committed by GitHub
parent e768c6c103
commit de1419b597
3 changed files with 9 additions and 1 deletions

View File

@@ -65,7 +65,8 @@ resource "null_resource" "wait_for_cluster" {
]
provisioner "local-exec" {
command = var.wait_for_cluster_cmd
command = var.wait_for_cluster_cmd
interpreter = var.wait_for_cluster_interpreter
environment = {
ENDPOINT = aws_eks_cluster.this[0].endpoint
}