Go Cloud

Cloud services library

View project on GitHub

gocloud DNS - AWS

Configure AWS credentials

Create gocloudconfig.json as follows,

{
  "AWSAccessKeyID": "xxxxxxxxxxxx",
  "AWSSecretKey": "xxxxxxxxxxxx",
}

also You can setup enviroment variables as

export AWSAccessKeyID =  "xxxxxxxxxxxx"
export AWSSecretKey = "xxxxxxxxxxxx"

Initialize library


import "github.com/cloudlibz/gocloud/gocloud"

amazoncloud, _ := gocloud.CloudProvider(gocloud.Amazonprovider)

create dns

  createdns := map[string]interface{}{
		"name":             "rootmonk.me",
		"hostedZoneConfig": "hostedZoneConfig",
	}

 resp, err := awsdns.Createdns(createdns)

 response := resp.(map[string]interface{})
 fmt.Println(response["body"])

delete dns

 deletedns := map[string]string{
		"ID": "ZOD7SUP0ZGGQQ",
	}

 resp, err := awsdns.Deletedns(deletedns)

 response := resp.(map[string]interface{})
 fmt.Println(response["body"])

List dns

 listdns := map[string]interface{}{
		"marker":   "",
		"maxItems": 2,
	}

  resp, err := awsdns.Listdns(listdns)
 
 response := resp.(map[string]interface{})
 fmt.Println(response["body"])

list ResourcednsRecordSets

 
 listResourcednsRecordSets := map[string]interface{}{
	"zone": "ZBNX5TIW033J2",
  }

 resp, err := awsdns.ListResourcednsRecordSets(listResourcednsRecordSets)
 
 response := resp.(map[string]interface{})
 fmt.Println(response["body"])

Back to Home Page