Crie uma VM no Azure com um VHD existente

3

Estou tentando criar uma máquina virtual no plaftorm MS Azure, a partir do meu arquivo VHD existente. Quando estou tentando, recebo o seguinte erro. Existe algum parâmetro para especificar o NIC? Fiz algumas pesquisas na web sem resultados adequados.

PS C:\Users\Rav> azure vm create --os-disk-vhd https://group11492.blob.core.windows.net/vhds/Integration201641775831.vhd

info:    Executing command vm create
    Resource group name: Default-Storage-WestUS
    Virtual machine name: integration201641775831v
    Location name: West US
    Operating system Type: Linux
    + Looking up the VM "integration201641775831v"
    info:    Using the VM Size "Standard_DS1"
    error:   Either NIC Id or NIC name is required
    info:    Error information has been recorded to C:\Users\Rav\.azure\azure.err
    error:   vm create command failed
    
por Rav 02.07.2016 / 17:37

1 resposta

1

Sim,

...

-I, --nic-ids <nic-ids>             the list of NIC identifiers separated by comma. 
                                    In case of specifying multiple nics first one
                                    will be set as primary.
-N, --nic-names <nic-names>         the list of NIC names separated by comma. 
                                    In case of specifying multiple nics first 
                                    one will be set as primary.These NICs must 
                                    exists in the same resource group as the VM. 
                                    Please use nic-ids if that not the case. 
                                    This parameter will be ignored if --nic-ids 
                                    is specified

...

Se você não vir esses parâmetros, talvez queira atualizar seu azure cli.

    
por 30.07.2016 / 05:59