Ao tentar efetuar o comando "VAGRANT UP" conforme abaixo, minha aplicação estava retornando o erro "SSL certificate problem: certificate has expired".
D:\ambiente_dev>vagrant up Bringing machine 'default' up with 'hyperv' provider... ==> default: Verifying Hyper-V is enabled... ==> default: Verifying Hyper-V is accessible... ==> default: Box 'hashicorp/precise64' could not be found. Attempting to find and install... default: Box Provider: hyperv default: Box Version: >= 0==> default: Loading metadata for box 'hashicorp/precise64' default: URL: https://vagrantcloud.com/hashicorp/precise64 ==> default: Adding box 'hashicorp/precise64' (v1.1.0) for provider: hyperv default: Downloading: https://vagrantcloud.com/hashicorp/boxes/precise64/versions/1.1.0/providers/hyperv.box default: An error occurred while downloading the remote file. The error message, if any, is reproduced below. Please fix this error and try again.
SSL certificate problem: certificate has expired
A solução foi acrescentar a linha config.vm.box_download_insecure = true logo abaixo da linha config.vm.box = "hashicorp/precise64" no arquivo Vagrantfile.
Anexo a imagem de erro e depois a de sucesso.