Difference between revisions of "Terraform resource: heroku app"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
{{lowercase}}
 
{{lowercase}}
 
* https://registry.terraform.io/providers/heroku/heroku/latest/docs/resources/app
 
* https://registry.terraform.io/providers/heroku/heroku/latest/docs/resources/app
 +
 +
== Example ==
 +
 +
resource "heroku_app" "default" {
 +
  name  = "my-cool-app"
 +
  region = "us"
 +
 +
  config_vars = {
 +
    FOOBAR = "baz"
 +
  }
 +
 +
  [[buildpacks]] = [
 +
    "heroku/go"
 +
  ]
 +
}
  
 
== See also ==
 
== See also ==

Revision as of 02:13, 1 March 2022

Example

resource "heroku_app" "default" {
  name   = "my-cool-app"
  region = "us" 

  config_vars = {
    FOOBAR = "baz"
  }

  buildpacks = [
    "heroku/go"
  ]
}

See also

Advertising: