From 0196a0c2aefea6b85f495b0bbe32a855021f0a24 Mon Sep 17 00:00:00 2001 From: John Ewart Date: Fri, 15 May 2015 13:34:23 -0700 Subject: [PATCH] Changed Required: false to Optional: true in the SNS topic schema --- builtin/providers/aws/resource_aws_sns_topic.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/providers/aws/resource_aws_sns_topic.go b/builtin/providers/aws/resource_aws_sns_topic.go index f327927a40..81eb34376d 100644 --- a/builtin/providers/aws/resource_aws_sns_topic.go +++ b/builtin/providers/aws/resource_aws_sns_topic.go @@ -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, }, },