ISSUE-5702: Fixed the testing

This commit is contained in:
Andy Chan 2016-03-23 11:15:06 -07:00
parent 76adbefb95
commit 4115249ce3
2 changed files with 5 additions and 5 deletions

View File

@ -29,10 +29,10 @@ func resourceAwsCloudWatchEventTarget() *schema.Resource {
},
"target_id": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ValidateFunc: validateCloudWatchEventTargetId,
},

View File

@ -166,7 +166,7 @@ resource "aws_cloudwatch_event_target" "moobar" {
}
resource "aws_sns_topic" "moon" {
name = "tf-acc-moon-1"
name = "tf-acc-moon"
}
`