From 01b9af40d1034bfe2c4a9da6884fa28d437e897d Mon Sep 17 00:00:00 2001 From: clint shryock Date: Thu, 19 Nov 2015 15:44:40 -0600 Subject: [PATCH] fix resource name in test --- .../aws/resource_aws_autoscaling_notification_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_autoscaling_notification_test.go b/builtin/providers/aws/resource_aws_autoscaling_notification_test.go index 8002dd885a..81fccfea34 100644 --- a/builtin/providers/aws/resource_aws_autoscaling_notification_test.go +++ b/builtin/providers/aws/resource_aws_autoscaling_notification_test.go @@ -240,7 +240,7 @@ resource "aws_autoscaling_notification" "example" { ` const testAccASGNotificationConfig_update = ` -resource "aws_sns_topic" "user_updates" { +resource "aws_sns_topic" "topic_example" { name = "user-updates-topic" } @@ -286,7 +286,7 @@ resource "aws_autoscaling_notification" "example" { "autoscaling:EC2_INSTANCE_TERMINATE", "autoscaling:EC2_INSTANCE_LAUNCH_ERROR" ] - topic_arn = "${aws_sns_topic.user_updates.arn}" + topic_arn = "${aws_sns_topic.topic_example.arn}" }` const testAccASGNotificationConfig_pagination = `