providers/heroku: tabs
This commit is contained in:
parent
89985a3dc6
commit
eb0bd46791
|
@ -229,24 +229,24 @@ func testAccCheckHerokuAppExists(n string, app *heroku.App) resource.TestCheckFu
|
||||||
|
|
||||||
const testAccCheckHerokuAppConfig_basic = `
|
const testAccCheckHerokuAppConfig_basic = `
|
||||||
resource "heroku_app" "foobar" {
|
resource "heroku_app" "foobar" {
|
||||||
name = "terraform-test-app"
|
name = "terraform-test-app"
|
||||||
|
|
||||||
config_vars {
|
config_vars {
|
||||||
FOO = bar
|
FOO = "bar"
|
||||||
}
|
}
|
||||||
}`
|
}`
|
||||||
|
|
||||||
const testAccCheckHerokuAppConfig_updated = `
|
const testAccCheckHerokuAppConfig_updated = `
|
||||||
resource "heroku_app" "foobar" {
|
resource "heroku_app" "foobar" {
|
||||||
name = "terraform-test-renamed"
|
name = "terraform-test-renamed"
|
||||||
|
|
||||||
config_vars {
|
config_vars {
|
||||||
FOO = bing
|
FOO = "bing"
|
||||||
BAZ = bar
|
BAZ = "bar"
|
||||||
}
|
}
|
||||||
}`
|
}`
|
||||||
|
|
||||||
const testAccCheckHerokuAppConfig_no_vars = `
|
const testAccCheckHerokuAppConfig_no_vars = `
|
||||||
resource "heroku_app" "foobar" {
|
resource "heroku_app" "foobar" {
|
||||||
name = "terraform-test-app"
|
name = "terraform-test-app"
|
||||||
}`
|
}`
|
||||||
|
|
Loading…
Reference in New Issue