fix resource name in test

This commit is contained in:
clint shryock 2015-11-19 15:44:40 -06:00
parent 0874347478
commit 01b9af40d1
1 changed files with 2 additions and 2 deletions

View File

@ -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 = `