provider/heroku: fix acc test
depends_on requires a list of strings. the old parser would silently ignore this field, but the new one returned a syntax error.
This commit is contained in:
parent
c637ca039c
commit
24d15820c1
|
@ -30,7 +30,7 @@ func TestAccHerokuCert_Basic(t *testing.T) {
|
||||||
|
|
||||||
resource "heroku_cert" "ssl_certificate" {
|
resource "heroku_cert" "ssl_certificate" {
|
||||||
app = "${heroku_app.foobar.name}"
|
app = "${heroku_app.foobar.name}"
|
||||||
depends_on = "heroku_addon.ssl"
|
depends_on = ["heroku_addon.ssl"]
|
||||||
certificate_chain="${file("` + certificateChainFile + `")}"
|
certificate_chain="${file("` + certificateChainFile + `")}"
|
||||||
private_key="${file("` + wd + `/test-fixtures/terraform.key")}"
|
private_key="${file("` + wd + `/test-fixtures/terraform.key")}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue