mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
1.2 KiB
1.2 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| heroku | Heroku: heroku_space | docs-heroku-resource-space | Provides a Heroku Space resource for running apps in isolated, highly available, secure app execution environments. |
heroku_space
Provides a Heroku Space resource for running apps in isolated, highly available, secure app execution environments.
Example Usage
// Create a new Heroku space
resource "heroku_space" "default" {
name = "test-space"
organization = "my-company"
region = "virginia"
}
// Create a new Heroku app in test-space
resource "heroku_app" "default" {
name = "test-app"
space = "${heroku_space.default.name}"
organization = {
name = "my-company"
}
}
Argument Reference
The following arguments are supported:
name- (Required) The name of the space.organization- (Required) The name of the organization which will own the space.region- (Optional) The region that the space should be created in.
Attributes Reference
The following attributes are exported:
id- The ID of the space.name- The space's name.organization- The space's organization.region- The space's region.