From 3a11352dfad6dad7d86f64de96e55bd3e0ac2380 Mon Sep 17 00:00:00 2001 From: "sangkyu.kim" Date: Tue, 30 Mar 2021 13:59:59 +0900 Subject: [PATCH] Fix ncloud builder unhandled buildvar type --- builder/ncloud/step_create_public_ip_instance.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/builder/ncloud/step_create_public_ip_instance.go b/builder/ncloud/step_create_public_ip_instance.go index 646f852cd..5f9af7ed7 100644 --- a/builder/ncloud/step_create_public_ip_instance.go +++ b/builder/ncloud/step_create_public_ip_instance.go @@ -307,9 +307,6 @@ func (s *StepCreatePublicIP) Run(ctx context.Context, state multistep.StateBag) if err == nil { state.Put("public_ip", *publicIPInstance.PublicIp) state.Put("public_ip_instance", publicIPInstance) - // instance_id is the generic term used so that users can have access to the - // instance id inside of the provisioners, used in step_provision. - state.Put("instance_id", *publicIPInstance) } return processStepResult(err, s.Error, state)