865 B
865 B
layout | page_title | sidebar_current |
---|---|---|
heroku | Heroku: heroku_domain | docs-heroku-resource-domain |
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 recordhostname
- The hostname traffic will be served ascname
- The cname traffic should route to.