github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/builtin/providers/aws/resource_aws_opsworks_php_app_layer.go (about) 1 package aws 2 3 import ( 4 "github.com/hashicorp/terraform/helper/schema" 5 ) 6 7 func resourceAwsOpsworksPhpAppLayer() *schema.Resource { 8 layerType := &opsworksLayerType{ 9 TypeName: "php-app", 10 DefaultLayerName: "PHP App Server", 11 12 Attributes: map[string]*opsworksLayerTypeAttribute{}, 13 } 14 15 return layerType.SchemaResource() 16 }