github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/builtin/providers/aws/resource_aws_opsworks_custom_layer.go (about)

     1  package aws
     2  
     3  import (
     4  	"github.com/hashicorp/terraform/helper/schema"
     5  )
     6  
     7  func resourceAwsOpsworksCustomLayer() *schema.Resource {
     8  	layerType := &opsworksLayerType{
     9  		TypeName:        "custom",
    10  		CustomShortName: true,
    11  
    12  		// The "custom" layer type has no additional attributes
    13  		Attributes: map[string]*opsworksLayerTypeAttribute{},
    14  	}
    15  
    16  	return layerType.SchemaResource()
    17  }