diff --git a/builder/ucloud/uhost/step_config_vpc.go b/builder/ucloud/uhost/step_config_vpc.go index 0290775ad..3378071f4 100644 --- a/builder/ucloud/uhost/step_config_vpc.go +++ b/builder/ucloud/uhost/step_config_vpc.go @@ -22,7 +22,7 @@ func (s *stepConfigVPC) Run(ctx context.Context, state multistep.StateBag) multi vpcSet, err := client.describeVPCById(s.VPCId) if err != nil { if isNotFoundError(err) { - err = fmt.Errorf("the specified vpc %q not exist", s.VPCId) + err = fmt.Errorf("the specified vpc %q does not exist", s.VPCId) return halt(state, err, "") } return halt(state, err, fmt.Sprintf("Error on querying specified vpc %q", s.VPCId))