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

44 lines
979 B
Markdown
Raw Normal View History

2014-07-24 17:18:00 +02:00
---
layout: "heroku"
page_title: "Heroku: heroku_domain"
sidebar_current: "docs-heroku-resource-domain"
2014-10-22 05:21:56 +02:00
description: |-
Provides a Heroku App resource. This can be used to create and manage applications on Heroku.
2014-07-24 17:18:00 +02:00
---
# 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
2014-07-24 17:18:00 +02:00
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.
2014-07-24 17:18:00 +02:00