Fix aws_opsworks_application acctest by passing in stack name

Other separate changes to testAccOpsworksStackConfigNoVpcCreate caused
this to begin failing because it was attempting to create a stack with
an empty name.
This commit is contained in:
Martin Atkins 2016-04-16 09:44:04 -07:00
parent bb7b8d6550
commit 2d597f09a8
1 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ func testAccCheckAwsOpsworksApplicationDestroy(s *terraform.State) error {
return nil return nil
} }
var testAccAwsOpsworksApplicationCreate = testAccAwsOpsworksStackConfigNoVpcCreate("") + ` var testAccAwsOpsworksApplicationCreate = testAccAwsOpsworksStackConfigNoVpcCreate("tf-ops-acc-application") + `
resource "aws_opsworks_application" "tf-acc-app" { resource "aws_opsworks_application" "tf-acc-app" {
stack_id = "${aws_opsworks_stack.tf-acc.id}" stack_id = "${aws_opsworks_stack.tf-acc.id}"
name = "tf-ops-acc-application" name = "tf-ops-acc-application"
@ -168,7 +168,7 @@ resource "aws_opsworks_application" "tf-acc-app" {
} }
` `
var testAccAwsOpsworksApplicationUpdate = testAccAwsOpsworksStackConfigNoVpcCreate("") + ` var testAccAwsOpsworksApplicationUpdate = testAccAwsOpsworksStackConfigNoVpcCreate("tf-ops-acc-application") + `
resource "aws_opsworks_application" "tf-acc-app" { resource "aws_opsworks_application" "tf-acc-app" {
stack_id = "${aws_opsworks_stack.tf-acc.id}" stack_id = "${aws_opsworks_stack.tf-acc.id}"
name = "tf-ops-acc-application" name = "tf-ops-acc-application"