From 7f87abae913208b1eb5f12fc3295b1e848426237 Mon Sep 17 00:00:00 2001 From: clint shryock Date: Wed, 8 Mar 2017 15:25:41 -0600 Subject: [PATCH] provider/aws: increase randomization in beantsalk app version tests --- ...source_aws_elastic_beanstalk_application_version_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/providers/aws/resource_aws_elastic_beanstalk_application_version_test.go b/builtin/providers/aws/resource_aws_elastic_beanstalk_application_version_test.go index c7bfe97c6..4eebb5784 100644 --- a/builtin/providers/aws/resource_aws_elastic_beanstalk_application_version_test.go +++ b/builtin/providers/aws/resource_aws_elastic_beanstalk_application_version_test.go @@ -108,15 +108,15 @@ resource "aws_s3_bucket_object" "default" { } resource "aws_elastic_beanstalk_application" "default" { - name = "tf-test-name" + name = "tf-test-name-%d" description = "tf-test-desc" } resource "aws_elastic_beanstalk_application_version" "default" { - application = "tf-test-name" + application = "tf-test-name-%d" name = "tf-test-version-label" bucket = "${aws_s3_bucket.default.id}" key = "${aws_s3_bucket_object.default.id}" } - `, randInt) + `, randInt, randInt, randInt) }