From a44df3d899745ffad052170b322f9dfe16cf8361 Mon Sep 17 00:00:00 2001 From: "mingsheng.su" Date: Fri, 28 Jun 2019 12:01:47 +0800 Subject: [PATCH] Update builder/ucloud/uhost/step_config_security_group.go Co-Authored-By: Megan Marsh --- builder/ucloud/uhost/step_config_security_group.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/ucloud/uhost/step_config_security_group.go b/builder/ucloud/uhost/step_config_security_group.go index 8b7531666..6e5a9afa6 100644 --- a/builder/ucloud/uhost/step_config_security_group.go +++ b/builder/ucloud/uhost/step_config_security_group.go @@ -22,7 +22,7 @@ func (s *stepConfigSecurityGroup) Run(ctx context.Context, state multistep.State securityGroupSet, err := client.describeFirewallById(s.SecurityGroupId) if err != nil { if isNotFoundError(err) { - err = fmt.Errorf("the specified security group %q not exist", s.SecurityGroupId) + err = fmt.Errorf("the specified security group %q does not exist", s.SecurityGroupId) return halt(state, err, "") } return halt(state, err, fmt.Sprintf("Error on querying specified security group %q", s.SecurityGroupId))