Skip to content

Commit

Permalink
dummy resource provider
Browse files Browse the repository at this point in the history
  • Loading branch information
m-s-austin committed May 13, 2015
1 parent 0975a70 commit 455b409
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions builtin/providers/aws/resource_aws_s3_bucket_policy.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package main

import (
"github.com/hashicorp/terraform/helper/schema"
)

func resourceAwsS3BucketPolicy() *schema.Resource {
return &schema.Resource{
Create: resourceAwsS3BucketPolicyCreate,
Read: resourceAwsS3BucketPolicyRead,
Update: resourceAwsS3BucketPolicyUpdate,
Delete: resourceAwsS3BucketPolicyDelete,

Schema: map[string]*schema.Schema{
"address": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
},
}
}

func resourceAwsS3BucketPolicyCreate(d *schema.ResourceData, m interface{}) error {
return nil
}

func resourceAwsS3BucketPolicyRead(d *schema.ResourceData, m interface{}) error {
return nil
}

func resourceAwsS3BucketPolicyUpdate(d *schema.ResourceData, m interface{}) error {
return nil
}

func resourceAwsS3BucketPolicyDelete(d *schema.ResourceData, m interface{}) error {
return nil
}

0 comments on commit 455b409

Please sign in to comment.