Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslangabitov committed Oct 6, 2014
1 parent 2edf9b0 commit 84da83b
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Azure SDK for Golang
This project provides a Golang package that makes it easy to consume and manage Microsoft Azure Services.

# Installation
- Install Golang: https://golang.org/doc/install
- Get Azure SDK package:

```sh
go get github.com/MSOpenTech/azure-sdk-for-go
```
- Install:

```sh
go install github.com/MSOpenTech/azure-sdk-for-go
```

# Usage

Create linux VM:

```C
package main

import (
"fmt"
"os"

azure "github.com/MSOpenTech/azure-sdk-for-go"
"github.com/MSOpenTech/azure-sdk-for-go/clients/vmClient"
)

func main() {
dnsName := "test-vm-from-go"
location := "West US"
vmSize := "Small"
vmImage := "b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB"
userName := "testuser"
userPassword := "Test123"
sshCert := ""

err := azure.ImportPublishSettings(SUBSCRIPTION_ID, SUBSCRIPTION_CERTIFICATE)
if err != nil {
fmt.Println(err)
os.Exit(1)
}

vmConfig, err := vmClient.CreateAzureVMConfiguration(dnsName, vmSize, vmImage, location)
if err != nil {
fmt.Println(err)
os.Exit(1)
}

vmConfig, err = vmClient.AddAzureLinuxProvisioningConfig(vmConfig, userName, userPassword, sshCert)
if err != nil {
fmt.Println(err)
os.Exit(1)
}

err = vmClient.CreateAzureVM(vmConfig, dnsName, location)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
```

0 comments on commit 84da83b

Please sign in to comment.