Skip to content

Commit

Permalink
Add missing arn to test compute environments
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor Heine committed Apr 23, 2018
1 parent 956d865 commit 5536d8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/data_source_aws_batch_job_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ resource "aws_batch_job_queue" "test" {
name = "%[1]s"
state = "ENABLED"
priority = 1
compute_environments = ["${aws_batch_compute_environment.sample}"]
compute_environments = ["${aws_batch_compute_environment.sample.arn}"]
}
resource "aws_batch_job_queue" "wrong" {
name = "%[1]s_wrong"
state = "ENABLED"
priority = 2
compute_environments = ["${aws_batch_compute_environment.sample}"]
compute_environments = ["${aws_batch_compute_environment.sample.arn}"]
}
data "aws_batch_job_queue" "by_name" {
Expand Down

0 comments on commit 5536d8b

Please sign in to comment.