provider/aws: Fix Beanstalk App Version acceptance test (#15083)

This commit is contained in:
Radek Simko 2017-06-05 20:34:39 +01:00 committed by GitHub
parent f08a7362c4
commit a464e97979
1 changed files with 2 additions and 2 deletions

View File

@ -113,10 +113,10 @@ resource "aws_elastic_beanstalk_application" "default" {
}
resource "aws_elastic_beanstalk_application_version" "default" {
application = "tf-test-name-%d"
application = "${aws_elastic_beanstalk_application.default.name}"
name = "tf-test-version-label"
bucket = "${aws_s3_bucket.default.id}"
key = "${aws_s3_bucket_object.default.id}"
}
`, randInt, randInt, randInt)
`, randInt, randInt)
}