github.com/recobe182/terraform@v0.8.5-0.20170117231232-49ab22a935b7/builtin/providers/aws/resource_aws_opsworks_static_web_layer.go (about) 1 package aws 2 3 import ( 4 "github.com/hashicorp/terraform/helper/schema" 5 ) 6 7 func resourceAwsOpsworksStaticWebLayer() *schema.Resource { 8 layerType := &opsworksLayerType{ 9 TypeName: "web", 10 DefaultLayerName: "Static Web Server", 11 12 Attributes: map[string]*opsworksLayerTypeAttribute{}, 13 } 14 15 return layerType.SchemaResource() 16 }