github.com/wallyworld/juju@v0.0.0-20161013125918-6cf1bc9d917a/provider/lxd/lxd.go (about)

     1  // Copyright 2015 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  // +build go1.3
     5  
     6  package lxd
     7  
     8  import (
     9  	"github.com/juju/loggo"
    10  
    11  	"github.com/juju/juju/tools/lxdclient"
    12  )
    13  
    14  // The metadata keys used when creating new instances.
    15  const (
    16  	metadataKeyCloudInit              = lxdclient.UserdataKey
    17  	metadataKeyCertificateFingerprint = lxdclient.CertificateFingerprintKey
    18  )
    19  
    20  var (
    21  	logger = loggo.GetLogger("juju.provider.lxd")
    22  )