Skip to content

Commit

Permalink
Changed Required: false to Optional: true in the SNS topic schema
Browse files Browse the repository at this point in the history
  • Loading branch information
johnewart committed May 15, 2015
1 parent d9c8bdc commit 860cddd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/providers/aws/resource_aws_sns_topic.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ func resourceAwsSnsTopic() *schema.Resource {
},
"display_name": &schema.Schema{
Type: schema.TypeString,
Required: false,
Optional: true,
ForceNew: false,
},
"policy": &schema.Schema{
Type: schema.TypeString,
Required: false,
Optional: true,
ForceNew: false,
Computed: true,
},
"delivery_policy": &schema.Schema{
Type: schema.TypeString,
Required: false,
Optional: true,
ForceNew: false,
},
},
Expand Down

0 comments on commit 860cddd

Please sign in to comment.