terraform/website/source/docs/providers/heroku/r/domain.html.markdown

981 B

layout page_title sidebar_current description
heroku Heroku: heroku_domain docs-heroku-resource-domain Provides a Heroku App resource. This can be used to create and manage applications on Heroku.

heroku_domain

Provides a Heroku App resource. This can be used to create and manage applications on Heroku.

Example Usage

# Create a new Heroku app
resource "heroku_app" "default" {
  name = "test-app"
}

# Associate a custom domain
resource "heroku_domain" "default" {
  app      = "${heroku_app.default.name}"
  hostname = "terraform.example.com"
}

Argument Reference

The following arguments are supported:

  • hostname - (Required) The hostname to serve requests from.
  • app - (Required) The Heroku app to link to.

Attributes Reference

The following attributes are exported:

  • id - The ID of the of the domain record.
  • hostname - The hostname traffic will be served as.
  • cname - The CNAME traffic should route to.