Problemas com vagabundos ao configurar o vagrant com azure

1

Estou configurando o Vagrant e o azul na máquina windows. enquanto executando o comando vagrant up abaixo do problema

Existem erros na configuração desta máquina. Por favor corrija os seguintes erros e tente novamente: Provedor do Microsoft Azure: * As seguintes configurações não devem existir: vm_image

Se eu estou executando o mesmo comando por desativar o Vm_image no arquivo vagrant enfrentado abaixo questão

**"body": "{\r\n  \"error\": {\r\n    \"code\": \"NotFound\",\r\n    \"message

\ ": \" Artefato: VMImage não foi encontrado. \ "\ r \ n} \ r \ n}",     "cabeçalhos": {       "cache-control": "no-cache",       "pragma": "no-cache",       "content-length": "99",       "tipo de conteúdo": "aplicativo / json; charset = utf-8",       "expira": "-1",       "strict-transport-security": "max-age = 31536000; includeSubDomains",       "x-ms-request-id": "553a43ab-efe6-4250-9b6d-9ab5aa9493f3",       "servidor": "Microsoft-HTTPAPI / 2.0, Microsoft-HTTPAPI / 2.0",       "x-ms-ratelimit-restante-subscrição-reads": "14996",       "x-ms-correlação-pedido-id": "b5f9cee2-6dfc-4e89-abf7-72d2cca84ff1",       "x-ms-routing-request-id": "SOUTHEASTASIA: 20170103T072604Z: b5f9cee2-6dfc-4 e89-abf7-72d2cca84ff1 ",       "date": "ter, 03 jan 2017 07:26:04 GMT",       "conexão": "fechar"     }     "status": 404   } **

Arquivo do Vagrant:

Vagrant.configure('2') do |config|
  config.vm.box = 'azure'
  #config.vm.box_url = 'https://github.com/msopentech/vagrant-azure/raw/master/dummy.box'

  # use local ssh key to connect to remote vagrant box
  #config.ssh.private_key_path = '~/.ssh/id_rsa'
  config.vm.provider :azure do |azure, override|
    # use Azure Active Directory Application / Service Principal to connect to Azure

    # each of the below values will default to use the env vars named as below if not specified explicitly
    #azure.mgmt_certificate = 'enterprise_dev-test-1-2-2017-credentials.pem'
    #azure.mgmt_endpoint = 'xxxxxxx'
    azure.subscription_id  = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
    azure.tenant_id = 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'
    azure.client_id = 'zzzzzzzzzzzzzzzzzzzzzzzzzz'
    azure.client_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
    #azure.vm_image='a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-20161214-en.us-127GB.vhd'
    azure.vm_name = 'box01'
    #azure.tcp_endpoints = '3389:53390'
  end
  config.ssh.username         = 'vagrant'
  #config.ssh.private_key_path = 'C:/Users/skannan/.vagrant.d/insecure_private_key'
  config.vm.provision "shell", inline: "echo hello"
  #config.vm.synced_folder "./vagrant", "/vagrant"
  config.vm.network :private_network, ip: "172.17.1.100", type: "dhcp"
end
    
por Jeeva S 03.01.2017 / 09:52

1 resposta

0

Isso significa simplesmente que você está solicitando uma imagem que não está disponível ou disponível em sua região. Uma causa raiz comum disso é seguir a documentação desatualizada! Experimente

az vm image list

E escolha um deles

    
por 08.07.2017 / 13:17

Tags